diff --git a/sdk/redis/Azure.ResourceManager.Redis/CHANGELOG.md b/sdk/redis/Azure.ResourceManager.Redis/CHANGELOG.md index fdb3bc1121d2..930bc65bdaf6 100644 --- a/sdk/redis/Azure.ResourceManager.Redis/CHANGELOG.md +++ b/sdk/redis/Azure.ResourceManager.Redis/CHANGELOG.md @@ -1,14 +1,19 @@ # Release History -## 1.1.0-beta.1 (Unreleased) +## 2.0.0 (2022-11-03) ### Features Added - +- ExportRdbContent has a new parameter PreferredDataArchiveAuthMethod +- ImportRdbContent has a new parameter PreferredDataArchiveAuthMethod +- RedisLinkedServerWithPropertyCreateOrUpdateContent has a new parameter GeoReplicatedPrimaryHostName +- RedisLinkedServerWithPropertyCreateOrUpdateContent has a new parameter PrimaryHostName +- RedisLinkedServerWithPropertyData has a new parameter GeoReplicatedPrimaryHostName +- RedisLinkedServerWithPropertyData has a new parameter PrimaryHostName ### Breaking Changes - -### Bugs Fixed - +- Deleting a linked server is now a long running operation +- Updating a cache is now a long running operation ### Other Changes +- API version 2022-06-01 will be used in HTTP requests ## 1.0.2 (2022-10-01) diff --git a/sdk/redis/Azure.ResourceManager.Redis/api/Azure.ResourceManager.Redis.netstandard2.0.cs b/sdk/redis/Azure.ResourceManager.Redis/api/Azure.ResourceManager.Redis.netstandard2.0.cs index 7eb11da16e96..f91e7d165cda 100644 --- a/sdk/redis/Azure.ResourceManager.Redis/api/Azure.ResourceManager.Redis.netstandard2.0.cs +++ b/sdk/redis/Azure.ResourceManager.Redis/api/Azure.ResourceManager.Redis.netstandard2.0.cs @@ -111,8 +111,10 @@ protected RedisLinkedServerWithPropertyCollection() { } public partial class RedisLinkedServerWithPropertyData : Azure.ResourceManager.Models.ResourceData { public RedisLinkedServerWithPropertyData() { } + public string GeoReplicatedPrimaryHostName { get { throw null; } } public Azure.Core.ResourceIdentifier LinkedRedisCacheId { get { throw null; } set { } } public Azure.Core.AzureLocation? LinkedRedisCacheLocation { get { throw null; } set { } } + public string PrimaryHostName { get { throw null; } } public string ProvisioningState { get { throw null; } } public Azure.ResourceManager.Redis.Models.RedisLinkedServerRole? ServerRole { get { throw null; } set { } } } @@ -244,8 +246,8 @@ protected RedisResource() { } public virtual System.Threading.Tasks.Task> RemoveTagAsync(string key, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.Response SetTags(System.Collections.Generic.IDictionary tags, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task> SetTagsAsync(System.Collections.Generic.IDictionary tags, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.Response Update(Azure.ResourceManager.Redis.Models.RedisPatch patch, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task> UpdateAsync(Azure.ResourceManager.Redis.Models.RedisPatch patch, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.ResourceManager.ArmOperation Update(Azure.WaitUntil waitUntil, Azure.ResourceManager.Redis.Models.RedisPatch patch, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> UpdateAsync(Azure.WaitUntil waitUntil, Azure.ResourceManager.Redis.Models.RedisPatch patch, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } } namespace Azure.ResourceManager.Redis.Models @@ -255,6 +257,7 @@ public partial class ExportRdbContent public ExportRdbContent(string prefix, string container) { } public string Container { get { throw null; } } public string Format { get { throw null; } set { } } + public string PreferredDataArchiveAuthMethod { get { throw null; } set { } } public string Prefix { get { throw null; } } } public partial class ImportRdbContent @@ -262,6 +265,7 @@ public partial class ImportRdbContent public ImportRdbContent(System.Collections.Generic.IEnumerable files) { } public System.Collections.Generic.IList Files { get { throw null; } } public string Format { get { throw null; } set { } } + public string PreferredDataArchiveAuthMethod { get { throw null; } set { } } } public partial class RedisAccessKeys { @@ -345,8 +349,10 @@ public enum RedisLinkedServerRole public partial class RedisLinkedServerWithPropertyCreateOrUpdateContent { public RedisLinkedServerWithPropertyCreateOrUpdateContent(Azure.Core.ResourceIdentifier linkedRedisCacheId, Azure.Core.AzureLocation linkedRedisCacheLocation, Azure.ResourceManager.Redis.Models.RedisLinkedServerRole serverRole) { } + public string GeoReplicatedPrimaryHostName { get { throw null; } } public Azure.Core.ResourceIdentifier LinkedRedisCacheId { get { throw null; } } public Azure.Core.AzureLocation LinkedRedisCacheLocation { get { throw null; } } + public string PrimaryHostName { get { throw null; } } public Azure.ResourceManager.Redis.Models.RedisLinkedServerRole ServerRole { get { throw null; } } } public partial class RedisNameAvailabilityContent diff --git a/sdk/redis/Azure.ResourceManager.Redis/src/ApiCompatBaseline.txt b/sdk/redis/Azure.ResourceManager.Redis/src/ApiCompatBaseline.txt new file mode 100644 index 000000000000..e50bb3aada93 --- /dev/null +++ b/sdk/redis/Azure.ResourceManager.Redis/src/ApiCompatBaseline.txt @@ -0,0 +1,4 @@ +Compat issues with assembly Azure.ResourceManager.Redis: +MembersMustExist : Member 'public Azure.Response Azure.ResourceManager.Redis.RedisResource.Update(Azure.ResourceManager.Redis.Models.RedisPatch, System.Threading.CancellationToken)' does not exist in the implementation but it does exist in the contract. +MembersMustExist : Member 'public System.Threading.Tasks.Task> Azure.ResourceManager.Redis.RedisResource.UpdateAsync(Azure.ResourceManager.Redis.Models.RedisPatch, System.Threading.CancellationToken)' does not exist in the implementation but it does exist in the contract. +Total Issues: 2 diff --git a/sdk/redis/Azure.ResourceManager.Redis/src/Azure.ResourceManager.Redis.csproj b/sdk/redis/Azure.ResourceManager.Redis/src/Azure.ResourceManager.Redis.csproj index 9e11d7c608b4..d58ac4f66cc7 100644 --- a/sdk/redis/Azure.ResourceManager.Redis/src/Azure.ResourceManager.Redis.csproj +++ b/sdk/redis/Azure.ResourceManager.Redis/src/Azure.ResourceManager.Redis.csproj @@ -1,6 +1,6 @@ - 1.1.0-beta.1 + 2.0.0 1.0.2 Azure.ResourceManager.Redis diff --git a/sdk/redis/Azure.ResourceManager.Redis/src/Generated/Models/ExportRdbContent.Serialization.cs b/sdk/redis/Azure.ResourceManager.Redis/src/Generated/Models/ExportRdbContent.Serialization.cs index c3765a3a4238..f6bc6f109a34 100644 --- a/sdk/redis/Azure.ResourceManager.Redis/src/Generated/Models/ExportRdbContent.Serialization.cs +++ b/sdk/redis/Azure.ResourceManager.Redis/src/Generated/Models/ExportRdbContent.Serialization.cs @@ -24,6 +24,11 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WriteStringValue(Prefix); writer.WritePropertyName("container"); writer.WriteStringValue(Container); + if (Optional.IsDefined(PreferredDataArchiveAuthMethod)) + { + writer.WritePropertyName("preferred-data-archive-auth-method"); + writer.WriteStringValue(PreferredDataArchiveAuthMethod); + } writer.WriteEndObject(); } } diff --git a/sdk/redis/Azure.ResourceManager.Redis/src/Generated/Models/ExportRdbContent.cs b/sdk/redis/Azure.ResourceManager.Redis/src/Generated/Models/ExportRdbContent.cs index dc76c67f59c9..84ab8edf472c 100644 --- a/sdk/redis/Azure.ResourceManager.Redis/src/Generated/Models/ExportRdbContent.cs +++ b/sdk/redis/Azure.ResourceManager.Redis/src/Generated/Models/ExportRdbContent.cs @@ -37,5 +37,7 @@ public ExportRdbContent(string prefix, string container) public string Prefix { get; } /// Container name to export to. public string Container { get; } + /// Preferred auth method to communicate to storage account used for data archive, specify SAS or ManagedIdentity, default value is SAS. + public string PreferredDataArchiveAuthMethod { get; set; } } } diff --git a/sdk/redis/Azure.ResourceManager.Redis/src/Generated/Models/ImportRdbContent.Serialization.cs b/sdk/redis/Azure.ResourceManager.Redis/src/Generated/Models/ImportRdbContent.Serialization.cs index 6900eefda5f0..45cdb2b2799d 100644 --- a/sdk/redis/Azure.ResourceManager.Redis/src/Generated/Models/ImportRdbContent.Serialization.cs +++ b/sdk/redis/Azure.ResourceManager.Redis/src/Generated/Models/ImportRdbContent.Serialization.cs @@ -27,6 +27,11 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WriteStringValue(item); } writer.WriteEndArray(); + if (Optional.IsDefined(PreferredDataArchiveAuthMethod)) + { + writer.WritePropertyName("preferred-data-archive-auth-method"); + writer.WriteStringValue(PreferredDataArchiveAuthMethod); + } writer.WriteEndObject(); } } diff --git a/sdk/redis/Azure.ResourceManager.Redis/src/Generated/Models/ImportRdbContent.cs b/sdk/redis/Azure.ResourceManager.Redis/src/Generated/Models/ImportRdbContent.cs index b132ba43a5f6..2d1b41539c2e 100644 --- a/sdk/redis/Azure.ResourceManager.Redis/src/Generated/Models/ImportRdbContent.cs +++ b/sdk/redis/Azure.ResourceManager.Redis/src/Generated/Models/ImportRdbContent.cs @@ -31,5 +31,7 @@ public ImportRdbContent(IEnumerable files) public string Format { get; set; } /// files to import. public IList Files { get; } + /// Preferred auth method to communicate to storage account used for data archive, specify SAS or ManagedIdentity, default value is SAS. + public string PreferredDataArchiveAuthMethod { get; set; } } } diff --git a/sdk/redis/Azure.ResourceManager.Redis/src/Generated/Models/RedisCreateOrUpdateContent.cs b/sdk/redis/Azure.ResourceManager.Redis/src/Generated/Models/RedisCreateOrUpdateContent.cs index eaccce9f0f32..a5c3d5d5d690 100644 --- a/sdk/redis/Azure.ResourceManager.Redis/src/Generated/Models/RedisCreateOrUpdateContent.cs +++ b/sdk/redis/Azure.ResourceManager.Redis/src/Generated/Models/RedisCreateOrUpdateContent.cs @@ -44,7 +44,7 @@ public RedisCreateOrUpdateContent(AzureLocation location, RedisSku sku) public ManagedServiceIdentity Identity { get; set; } /// All Redis Settings. Few possible keys: rdb-backup-enabled,rdb-storage-connection-string,rdb-backup-frequency,maxmemory-delta,maxmemory-policy,notify-keyspace-events,maxmemory-samples,slowlog-log-slower-than,slowlog-max-len,list-max-ziplist-entries,list-max-ziplist-value,hash-max-ziplist-entries,hash-max-ziplist-value,set-max-intset-entries,zset-max-ziplist-entries,zset-max-ziplist-value etc. public RedisCommonConfiguration RedisConfiguration { get; set; } - /// Redis version. Only major version will be used in PUT/PATCH request with current valid values: (4, 6). + /// Redis version. This should be in the form 'major[.minor]' (only 'major' is required) or the value 'latest' which refers to the latest stable Redis version that is available. Supported versions: 4.0, 6.0 (latest). Default value is 'latest'. public string RedisVersion { get; set; } /// Specifies whether the non-ssl Redis server port (6379) is enabled. public bool? EnableNonSslPort { get; set; } diff --git a/sdk/redis/Azure.ResourceManager.Redis/src/Generated/Models/RedisLinkedServerWithPropertyCreateOrUpdateContent.cs b/sdk/redis/Azure.ResourceManager.Redis/src/Generated/Models/RedisLinkedServerWithPropertyCreateOrUpdateContent.cs index 86566950e0f6..1ed6df308298 100644 --- a/sdk/redis/Azure.ResourceManager.Redis/src/Generated/Models/RedisLinkedServerWithPropertyCreateOrUpdateContent.cs +++ b/sdk/redis/Azure.ResourceManager.Redis/src/Generated/Models/RedisLinkedServerWithPropertyCreateOrUpdateContent.cs @@ -36,5 +36,9 @@ public RedisLinkedServerWithPropertyCreateOrUpdateContent(ResourceIdentifier lin public AzureLocation LinkedRedisCacheLocation { get; } /// Role of the linked server. public RedisLinkedServerRole ServerRole { get; } + /// The unchanging DNS name which will always point to current geo-primary cache among the linked redis caches for seamless Geo Failover experience. + public string GeoReplicatedPrimaryHostName { get; } + /// The changing DNS name that resolves to the current geo-primary cache among the linked redis caches before or after the Geo Failover. + public string PrimaryHostName { get; } } } diff --git a/sdk/redis/Azure.ResourceManager.Redis/src/Generated/Models/RedisLinkedServerWithPropertyData.Serialization.cs b/sdk/redis/Azure.ResourceManager.Redis/src/Generated/Models/RedisLinkedServerWithPropertyData.Serialization.cs index 89b0fbad8ba6..a8feee21753e 100644 --- a/sdk/redis/Azure.ResourceManager.Redis/src/Generated/Models/RedisLinkedServerWithPropertyData.Serialization.cs +++ b/sdk/redis/Azure.ResourceManager.Redis/src/Generated/Models/RedisLinkedServerWithPropertyData.Serialization.cs @@ -47,6 +47,8 @@ internal static RedisLinkedServerWithPropertyData DeserializeRedisLinkedServerWi Optional linkedRedisCacheId = default; Optional linkedRedisCacheLocation = default; Optional serverRole = default; + Optional geoReplicatedPrimaryHostName = default; + Optional primaryHostName = default; Optional provisioningState = default; foreach (var property in element.EnumerateObject()) { @@ -114,6 +116,16 @@ internal static RedisLinkedServerWithPropertyData DeserializeRedisLinkedServerWi serverRole = property0.Value.GetString().ToRedisLinkedServerRole(); continue; } + if (property0.NameEquals("geoReplicatedPrimaryHostName")) + { + geoReplicatedPrimaryHostName = property0.Value.GetString(); + continue; + } + if (property0.NameEquals("primaryHostName")) + { + primaryHostName = property0.Value.GetString(); + continue; + } if (property0.NameEquals("provisioningState")) { provisioningState = property0.Value.GetString(); @@ -123,7 +135,7 @@ internal static RedisLinkedServerWithPropertyData DeserializeRedisLinkedServerWi continue; } } - return new RedisLinkedServerWithPropertyData(id, name, type, systemData.Value, linkedRedisCacheId.Value, Optional.ToNullable(linkedRedisCacheLocation), Optional.ToNullable(serverRole), provisioningState.Value); + return new RedisLinkedServerWithPropertyData(id, name, type, systemData.Value, linkedRedisCacheId.Value, Optional.ToNullable(linkedRedisCacheLocation), Optional.ToNullable(serverRole), geoReplicatedPrimaryHostName.Value, primaryHostName.Value, provisioningState.Value); } } } diff --git a/sdk/redis/Azure.ResourceManager.Redis/src/Generated/Models/RedisPatch.cs b/sdk/redis/Azure.ResourceManager.Redis/src/Generated/Models/RedisPatch.cs index f21dbe96769b..626bb41e6789 100644 --- a/sdk/redis/Azure.ResourceManager.Redis/src/Generated/Models/RedisPatch.cs +++ b/sdk/redis/Azure.ResourceManager.Redis/src/Generated/Models/RedisPatch.cs @@ -27,7 +27,7 @@ public RedisPatch() public ManagedServiceIdentity Identity { get; set; } /// All Redis Settings. Few possible keys: rdb-backup-enabled,rdb-storage-connection-string,rdb-backup-frequency,maxmemory-delta,maxmemory-policy,notify-keyspace-events,maxmemory-samples,slowlog-log-slower-than,slowlog-max-len,list-max-ziplist-entries,list-max-ziplist-value,hash-max-ziplist-entries,hash-max-ziplist-value,set-max-intset-entries,zset-max-ziplist-entries,zset-max-ziplist-value etc. public RedisCommonConfiguration RedisConfiguration { get; set; } - /// Redis version. Only major version will be used in PUT/PATCH request with current valid values: (4, 6). + /// Redis version. This should be in the form 'major[.minor]' (only 'major' is required) or the value 'latest' which refers to the latest stable Redis version that is available. Supported versions: 4.0, 6.0 (latest). Default value is 'latest'. public string RedisVersion { get; set; } /// Specifies whether the non-ssl Redis server port (6379) is enabled. public bool? EnableNonSslPort { get; set; } diff --git a/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RedisData.cs b/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RedisData.cs index 361adf110f84..804bf9e9bcb6 100644 --- a/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RedisData.cs +++ b/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RedisData.cs @@ -47,7 +47,7 @@ public RedisData(AzureLocation location, RedisSku sku) : base(location) /// A list of availability zones denoting where the resource needs to come from. /// The identity of the resource. /// All Redis Settings. Few possible keys: rdb-backup-enabled,rdb-storage-connection-string,rdb-backup-frequency,maxmemory-delta,maxmemory-policy,notify-keyspace-events,maxmemory-samples,slowlog-log-slower-than,slowlog-max-len,list-max-ziplist-entries,list-max-ziplist-value,hash-max-ziplist-entries,hash-max-ziplist-value,set-max-intset-entries,zset-max-ziplist-entries,zset-max-ziplist-value etc. - /// Redis version. Only major version will be used in PUT/PATCH request with current valid values: (4, 6). + /// Redis version. This should be in the form 'major[.minor]' (only 'major' is required) or the value 'latest' which refers to the latest stable Redis version that is available. Supported versions: 4.0, 6.0 (latest). Default value is 'latest'. /// Specifies whether the non-ssl Redis server port (6379) is enabled. /// The number of replicas to be created per primary. /// The number of replicas to be created per primary. @@ -98,7 +98,7 @@ internal RedisData(ResourceIdentifier id, string name, ResourceType resourceType public ManagedServiceIdentity Identity { get; set; } /// All Redis Settings. Few possible keys: rdb-backup-enabled,rdb-storage-connection-string,rdb-backup-frequency,maxmemory-delta,maxmemory-policy,notify-keyspace-events,maxmemory-samples,slowlog-log-slower-than,slowlog-max-len,list-max-ziplist-entries,list-max-ziplist-value,hash-max-ziplist-entries,hash-max-ziplist-value,set-max-intset-entries,zset-max-ziplist-entries,zset-max-ziplist-value etc. public RedisCommonConfiguration RedisConfiguration { get; set; } - /// Redis version. Only major version will be used in PUT/PATCH request with current valid values: (4, 6). + /// Redis version. This should be in the form 'major[.minor]' (only 'major' is required) or the value 'latest' which refers to the latest stable Redis version that is available. Supported versions: 4.0, 6.0 (latest). Default value is 'latest'. public string RedisVersion { get; set; } /// Specifies whether the non-ssl Redis server port (6379) is enabled. public bool? EnableNonSslPort { get; set; } diff --git a/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RedisLinkedServerWithPropertyData.cs b/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RedisLinkedServerWithPropertyData.cs index 4b1015eb32de..debf83c0b06c 100644 --- a/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RedisLinkedServerWithPropertyData.cs +++ b/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RedisLinkedServerWithPropertyData.cs @@ -27,12 +27,16 @@ public RedisLinkedServerWithPropertyData() /// Fully qualified resourceId of the linked redis cache. /// Location of the linked redis cache. /// Role of the linked server. + /// The unchanging DNS name which will always point to current geo-primary cache among the linked redis caches for seamless Geo Failover experience. + /// The changing DNS name that resolves to the current geo-primary cache among the linked redis caches before or after the Geo Failover. /// Terminal state of the link between primary and secondary redis cache. - internal RedisLinkedServerWithPropertyData(ResourceIdentifier id, string name, ResourceType resourceType, SystemData systemData, ResourceIdentifier linkedRedisCacheId, AzureLocation? linkedRedisCacheLocation, RedisLinkedServerRole? serverRole, string provisioningState) : base(id, name, resourceType, systemData) + internal RedisLinkedServerWithPropertyData(ResourceIdentifier id, string name, ResourceType resourceType, SystemData systemData, ResourceIdentifier linkedRedisCacheId, AzureLocation? linkedRedisCacheLocation, RedisLinkedServerRole? serverRole, string geoReplicatedPrimaryHostName, string primaryHostName, string provisioningState) : base(id, name, resourceType, systemData) { LinkedRedisCacheId = linkedRedisCacheId; LinkedRedisCacheLocation = linkedRedisCacheLocation; ServerRole = serverRole; + GeoReplicatedPrimaryHostName = geoReplicatedPrimaryHostName; + PrimaryHostName = primaryHostName; ProvisioningState = provisioningState; } @@ -42,6 +46,10 @@ internal RedisLinkedServerWithPropertyData(ResourceIdentifier id, string name, R public AzureLocation? LinkedRedisCacheLocation { get; set; } /// Role of the linked server. public RedisLinkedServerRole? ServerRole { get; set; } + /// The unchanging DNS name which will always point to current geo-primary cache among the linked redis caches for seamless Geo Failover experience. + public string GeoReplicatedPrimaryHostName { get; } + /// The changing DNS name that resolves to the current geo-primary cache among the linked redis caches before or after the Geo Failover. + public string PrimaryHostName { get; } /// Terminal state of the link between primary and secondary redis cache. public string ProvisioningState { get; } } diff --git a/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RedisLinkedServerWithPropertyResource.cs b/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RedisLinkedServerWithPropertyResource.cs index 8c654f8ac0e3..1090001bdc91 100644 --- a/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RedisLinkedServerWithPropertyResource.cs +++ b/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RedisLinkedServerWithPropertyResource.cs @@ -149,7 +149,7 @@ public virtual async Task DeleteAsync(WaitUntil waitUntil, Cancell try { var response = await _redisLinkedServerWithPropertyLinkedServerRestClient.DeleteAsync(Id.SubscriptionId, Id.ResourceGroupName, Id.Parent.Name, Id.Name, cancellationToken).ConfigureAwait(false); - var operation = new RedisArmOperation(response); + var operation = new RedisArmOperation(_redisLinkedServerWithPropertyLinkedServerClientDiagnostics, Pipeline, _redisLinkedServerWithPropertyLinkedServerRestClient.CreateDeleteRequest(Id.SubscriptionId, Id.ResourceGroupName, Id.Parent.Name, Id.Name).Request, response, OperationFinalStateVia.Location); if (waitUntil == WaitUntil.Completed) await operation.WaitForCompletionResponseAsync(cancellationToken).ConfigureAwait(false); return operation; @@ -175,7 +175,7 @@ public virtual ArmOperation Delete(WaitUntil waitUntil, CancellationToken cancel try { var response = _redisLinkedServerWithPropertyLinkedServerRestClient.Delete(Id.SubscriptionId, Id.ResourceGroupName, Id.Parent.Name, Id.Name, cancellationToken); - var operation = new RedisArmOperation(response); + var operation = new RedisArmOperation(_redisLinkedServerWithPropertyLinkedServerClientDiagnostics, Pipeline, _redisLinkedServerWithPropertyLinkedServerRestClient.CreateDeleteRequest(Id.SubscriptionId, Id.ResourceGroupName, Id.Parent.Name, Id.Name).Request, response, OperationFinalStateVia.Location); if (waitUntil == WaitUntil.Completed) operation.WaitForCompletionResponse(cancellationToken); return operation; diff --git a/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RedisResource.cs b/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RedisResource.cs index 4d58466e427a..4afe3fdeebd8 100644 --- a/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RedisResource.cs +++ b/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RedisResource.cs @@ -342,10 +342,11 @@ public virtual ArmOperation Delete(WaitUntil waitUntil, CancellationToken cancel /// Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{name} /// Operation Id: Redis_Update /// + /// if the method should wait to return until the long-running operation has completed on the service; if it should return after starting the operation. For more information on long-running operations, please see Azure.Core Long-Running Operation samples. /// Parameters supplied to the Update Redis operation. /// The cancellation token to use. /// is null. - public virtual async Task> UpdateAsync(RedisPatch patch, CancellationToken cancellationToken = default) + public virtual async Task> UpdateAsync(WaitUntil waitUntil, RedisPatch patch, CancellationToken cancellationToken = default) { Argument.AssertNotNull(patch, nameof(patch)); @@ -354,7 +355,10 @@ public virtual async Task> UpdateAsync(RedisPatch patch, try { var response = await _redisRestClient.UpdateAsync(Id.SubscriptionId, Id.ResourceGroupName, Id.Name, patch, cancellationToken).ConfigureAwait(false); - return Response.FromValue(new RedisResource(Client, response.Value), response.GetRawResponse()); + var operation = new RedisArmOperation(new RedisOperationSource(Client), _redisClientDiagnostics, Pipeline, _redisRestClient.CreateUpdateRequest(Id.SubscriptionId, Id.ResourceGroupName, Id.Name, patch).Request, response, OperationFinalStateVia.Location); + if (waitUntil == WaitUntil.Completed) + await operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false); + return operation; } catch (Exception e) { @@ -368,10 +372,11 @@ public virtual async Task> UpdateAsync(RedisPatch patch, /// Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{name} /// Operation Id: Redis_Update /// + /// if the method should wait to return until the long-running operation has completed on the service; if it should return after starting the operation. For more information on long-running operations, please see Azure.Core Long-Running Operation samples. /// Parameters supplied to the Update Redis operation. /// The cancellation token to use. /// is null. - public virtual Response Update(RedisPatch patch, CancellationToken cancellationToken = default) + public virtual ArmOperation Update(WaitUntil waitUntil, RedisPatch patch, CancellationToken cancellationToken = default) { Argument.AssertNotNull(patch, nameof(patch)); @@ -380,7 +385,10 @@ public virtual Response Update(RedisPatch patch, CancellationToke try { var response = _redisRestClient.Update(Id.SubscriptionId, Id.ResourceGroupName, Id.Name, patch, cancellationToken); - return Response.FromValue(new RedisResource(Client, response.Value), response.GetRawResponse()); + var operation = new RedisArmOperation(new RedisOperationSource(Client), _redisClientDiagnostics, Pipeline, _redisRestClient.CreateUpdateRequest(Id.SubscriptionId, Id.ResourceGroupName, Id.Name, patch).Request, response, OperationFinalStateVia.Location); + if (waitUntil == WaitUntil.Completed) + operation.WaitForCompletion(cancellationToken); + return operation; } catch (Exception e) { @@ -832,8 +840,8 @@ public virtual async Task> AddTagAsync(string key, strin patch.Tags.Add(tag); } patch.Tags[key] = value; - var result = await UpdateAsync(patch, cancellationToken: cancellationToken).ConfigureAwait(false); - return result; + var result = await UpdateAsync(WaitUntil.Completed, patch, cancellationToken: cancellationToken).ConfigureAwait(false); + return Response.FromValue(result.Value, result.GetRawResponse()); } } catch (Exception e) @@ -878,8 +886,8 @@ public virtual Response AddTag(string key, string value, Cancella patch.Tags.Add(tag); } patch.Tags[key] = value; - var result = Update(patch, cancellationToken: cancellationToken); - return result; + var result = Update(WaitUntil.Completed, patch, cancellationToken: cancellationToken); + return Response.FromValue(result.Value, result.GetRawResponse()); } } catch (Exception e) @@ -919,8 +927,8 @@ public virtual async Task> SetTagsAsync(IDictionary SetTags(IDictionary tags, var current = Get(cancellationToken: cancellationToken).Value.Data; var patch = new RedisPatch(); patch.Tags.ReplaceWith(tags); - var result = Update(patch, cancellationToken: cancellationToken); - return result; + var result = Update(WaitUntil.Completed, patch, cancellationToken: cancellationToken); + return Response.FromValue(result.Value, result.GetRawResponse()); } } catch (Exception e) @@ -1004,8 +1012,8 @@ public virtual async Task> RemoveTagAsync(string key, Ca patch.Tags.Add(tag); } patch.Tags.Remove(key); - var result = await UpdateAsync(patch, cancellationToken: cancellationToken).ConfigureAwait(false); - return result; + var result = await UpdateAsync(WaitUntil.Completed, patch, cancellationToken: cancellationToken).ConfigureAwait(false); + return Response.FromValue(result.Value, result.GetRawResponse()); } } catch (Exception e) @@ -1048,8 +1056,8 @@ public virtual Response RemoveTag(string key, CancellationToken c patch.Tags.Add(tag); } patch.Tags.Remove(key); - var result = Update(patch, cancellationToken: cancellationToken); - return result; + var result = Update(WaitUntil.Completed, patch, cancellationToken: cancellationToken); + return Response.FromValue(result.Value, result.GetRawResponse()); } } catch (Exception e) diff --git a/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RestOperations/AsyncOperationStatusRestOperations.cs b/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RestOperations/AsyncOperationStatusRestOperations.cs index 30edfffb3811..7f458e51384c 100644 --- a/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RestOperations/AsyncOperationStatusRestOperations.cs +++ b/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RestOperations/AsyncOperationStatusRestOperations.cs @@ -33,7 +33,7 @@ public AsyncOperationStatusRestOperations(HttpPipeline pipeline, string applicat { _pipeline = pipeline ?? throw new ArgumentNullException(nameof(pipeline)); _endpoint = endpoint ?? new Uri("https://management.azure.com"); - _apiVersion = apiVersion ?? "2021-06-01"; + _apiVersion = apiVersion ?? "2022-06-01"; _userAgent = new TelemetryDetails(GetType().Assembly, applicationId); } diff --git a/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RestOperations/FirewallRulesRestOperations.cs b/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RestOperations/FirewallRulesRestOperations.cs index 347f19e90132..ba1fe934effb 100644 --- a/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RestOperations/FirewallRulesRestOperations.cs +++ b/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RestOperations/FirewallRulesRestOperations.cs @@ -33,7 +33,7 @@ public FirewallRulesRestOperations(HttpPipeline pipeline, string applicationId, { _pipeline = pipeline ?? throw new ArgumentNullException(nameof(pipeline)); _endpoint = endpoint ?? new Uri("https://management.azure.com"); - _apiVersion = apiVersion ?? "2021-06-01"; + _apiVersion = apiVersion ?? "2022-06-01"; _userAgent = new TelemetryDetails(GetType().Assembly, applicationId); } diff --git a/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RestOperations/LinkedServerRestOperations.cs b/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RestOperations/LinkedServerRestOperations.cs index 6e52e03bb4ab..655dc54a8093 100644 --- a/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RestOperations/LinkedServerRestOperations.cs +++ b/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RestOperations/LinkedServerRestOperations.cs @@ -33,7 +33,7 @@ public LinkedServerRestOperations(HttpPipeline pipeline, string applicationId, U { _pipeline = pipeline ?? throw new ArgumentNullException(nameof(pipeline)); _endpoint = endpoint ?? new Uri("https://management.azure.com"); - _apiVersion = apiVersion ?? "2021-06-01"; + _apiVersion = apiVersion ?? "2022-06-01"; _userAgent = new TelemetryDetails(GetType().Assembly, applicationId); } @@ -163,7 +163,7 @@ public async Task DeleteAsync(string subscriptionId, string resourceGr switch (message.Response.Status) { case 200: - case 204: + case 202: return message.Response; default: throw new RequestFailedException(message.Response); @@ -190,7 +190,7 @@ public Response Delete(string subscriptionId, string resourceGroupName, string n switch (message.Response.Status) { case 200: - case 204: + case 202: return message.Response; default: throw new RequestFailedException(message.Response); diff --git a/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RestOperations/PatchSchedulesRestOperations.cs b/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RestOperations/PatchSchedulesRestOperations.cs index da621d795431..88211c1d86e3 100644 --- a/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RestOperations/PatchSchedulesRestOperations.cs +++ b/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RestOperations/PatchSchedulesRestOperations.cs @@ -33,7 +33,7 @@ public PatchSchedulesRestOperations(HttpPipeline pipeline, string applicationId, { _pipeline = pipeline ?? throw new ArgumentNullException(nameof(pipeline)); _endpoint = endpoint ?? new Uri("https://management.azure.com"); - _apiVersion = apiVersion ?? "2021-06-01"; + _apiVersion = apiVersion ?? "2022-06-01"; _userAgent = new TelemetryDetails(GetType().Assembly, applicationId); } diff --git a/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RestOperations/PrivateEndpointConnectionsRestOperations.cs b/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RestOperations/PrivateEndpointConnectionsRestOperations.cs index 6c578fa64a89..c8cfee2cbede 100644 --- a/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RestOperations/PrivateEndpointConnectionsRestOperations.cs +++ b/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RestOperations/PrivateEndpointConnectionsRestOperations.cs @@ -33,7 +33,7 @@ public PrivateEndpointConnectionsRestOperations(HttpPipeline pipeline, string ap { _pipeline = pipeline ?? throw new ArgumentNullException(nameof(pipeline)); _endpoint = endpoint ?? new Uri("https://management.azure.com"); - _apiVersion = apiVersion ?? "2021-06-01"; + _apiVersion = apiVersion ?? "2022-06-01"; _userAgent = new TelemetryDetails(GetType().Assembly, applicationId); } @@ -251,6 +251,7 @@ public async Task PutAsync(string subscriptionId, string resourceGroup await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false); switch (message.Response.Status) { + case 200: case 201: return message.Response; default: @@ -279,6 +280,7 @@ public Response Put(string subscriptionId, string resourceGroupName, string cach _pipeline.Send(message, cancellationToken); switch (message.Response.Status) { + case 200: case 201: return message.Response; default: diff --git a/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RestOperations/PrivateLinkResourcesRestOperations.cs b/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RestOperations/PrivateLinkResourcesRestOperations.cs index ba4746fb3692..d1dfa9df1355 100644 --- a/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RestOperations/PrivateLinkResourcesRestOperations.cs +++ b/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RestOperations/PrivateLinkResourcesRestOperations.cs @@ -33,7 +33,7 @@ public PrivateLinkResourcesRestOperations(HttpPipeline pipeline, string applicat { _pipeline = pipeline ?? throw new ArgumentNullException(nameof(pipeline)); _endpoint = endpoint ?? new Uri("https://management.azure.com"); - _apiVersion = apiVersion ?? "2021-06-01"; + _apiVersion = apiVersion ?? "2022-06-01"; _userAgent = new TelemetryDetails(GetType().Assembly, applicationId); } diff --git a/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RestOperations/RedisRestOperations.cs b/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RestOperations/RedisRestOperations.cs index 49a95d01afd3..783a28cf6bb6 100644 --- a/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RestOperations/RedisRestOperations.cs +++ b/sdk/redis/Azure.ResourceManager.Redis/src/Generated/RestOperations/RedisRestOperations.cs @@ -33,7 +33,7 @@ public RedisRestOperations(HttpPipeline pipeline, string applicationId, Uri endp { _pipeline = pipeline ?? throw new ArgumentNullException(nameof(pipeline)); _endpoint = endpoint ?? new Uri("https://management.azure.com"); - _apiVersion = apiVersion ?? "2021-06-01"; + _apiVersion = apiVersion ?? "2022-06-01"; _userAgent = new TelemetryDetails(GetType().Assembly, applicationId); } @@ -294,7 +294,7 @@ internal HttpMessage CreateUpdateRequest(string subscriptionId, string resourceG /// The cancellation token to use. /// , , or is null. /// , or is an empty string, and was expected to be non-empty. - public async Task> UpdateAsync(string subscriptionId, string resourceGroupName, string name, RedisPatch patch, CancellationToken cancellationToken = default) + public async Task UpdateAsync(string subscriptionId, string resourceGroupName, string name, RedisPatch patch, CancellationToken cancellationToken = default) { Argument.AssertNotNullOrEmpty(subscriptionId, nameof(subscriptionId)); Argument.AssertNotNullOrEmpty(resourceGroupName, nameof(resourceGroupName)); @@ -306,12 +306,8 @@ public async Task> UpdateAsync(string subscriptionId, string switch (message.Response.Status) { case 200: - { - RedisData value = default; - using var document = await JsonDocument.ParseAsync(message.Response.ContentStream, default, cancellationToken).ConfigureAwait(false); - value = RedisData.DeserializeRedisData(document.RootElement); - return Response.FromValue(value, message.Response); - } + case 202: + return message.Response; default: throw new RequestFailedException(message.Response); } @@ -325,7 +321,7 @@ public async Task> UpdateAsync(string subscriptionId, string /// The cancellation token to use. /// , , or is null. /// , or is an empty string, and was expected to be non-empty. - public Response Update(string subscriptionId, string resourceGroupName, string name, RedisPatch patch, CancellationToken cancellationToken = default) + public Response Update(string subscriptionId, string resourceGroupName, string name, RedisPatch patch, CancellationToken cancellationToken = default) { Argument.AssertNotNullOrEmpty(subscriptionId, nameof(subscriptionId)); Argument.AssertNotNullOrEmpty(resourceGroupName, nameof(resourceGroupName)); @@ -337,12 +333,8 @@ public Response Update(string subscriptionId, string resourceGroupNam switch (message.Response.Status) { case 200: - { - RedisData value = default; - using var document = JsonDocument.Parse(message.Response.ContentStream); - value = RedisData.DeserializeRedisData(document.RootElement); - return Response.FromValue(value, message.Response); - } + case 202: + return message.Response; default: throw new RequestFailedException(message.Response); } diff --git a/sdk/redis/Azure.ResourceManager.Redis/src/autorest.md b/sdk/redis/Azure.ResourceManager.Redis/src/autorest.md index 2edac747fa2d..e87488727ceb 100644 --- a/sdk/redis/Azure.ResourceManager.Redis/src/autorest.md +++ b/sdk/redis/Azure.ResourceManager.Redis/src/autorest.md @@ -8,7 +8,7 @@ azure-arm: true csharp: true library-name: Redis namespace: Azure.ResourceManager.Redis -require: https://github.com/Azure/azure-rest-api-specs/blob/5419bfc41fe7a45955df3f342c4d5d81ea785a35/specification/redis/resource-manager/readme.md +require: https://github.com/Azure/azure-rest-api-specs/blob/68847d6ae901f0cb2efa62ae2c523ad8cf5c2ea3/specification/redis/resource-manager/readme.md output-folder: $(this-folder)/Generated clear-output-folder: true skip-csproj: true diff --git a/sdk/redis/Azure.ResourceManager.Redis/tests/ScenarioTests/BeginCreateFunctionalTests.cs b/sdk/redis/Azure.ResourceManager.Redis/tests/ScenarioTests/BeginCreateFunctionalTests.cs index 3b2a86a8afc5..49a91582ae5c 100644 --- a/sdk/redis/Azure.ResourceManager.Redis/tests/ScenarioTests/BeginCreateFunctionalTests.cs +++ b/sdk/redis/Azure.ResourceManager.Redis/tests/ScenarioTests/BeginCreateFunctionalTests.cs @@ -36,7 +36,7 @@ public async Task BeginCreateFunctionalTest() var parameter = new RedisCreateOrUpdateContent(DefaultLocation, new RedisSku(RedisSkuName.Premium, RedisSkuFamily.Premium, 1)) { MinimumTlsVersion = RedisTlsVersion.Tls1_2, ReplicasPerMaster = 2, - RedisVersion = "6", + RedisVersion = "latest", RedisConfiguration = new RedisCommonConfiguration() { MaxMemoryPolicy = "allkeys-lru", @@ -52,7 +52,7 @@ public async Task BeginCreateFunctionalTest() Assert.AreEqual(RedisSkuFamily.Premium, response.Data.Sku.Family); Assert.AreEqual(RedisTlsVersion.Tls1_2, response.Data.MinimumTlsVersion); Assert.AreEqual(2, response.Data.ReplicasPerMaster); - Assert.AreEqual("6", response.Data.RedisVersion.Split('.')[0]); + Assert.AreEqual("6", response.Data.RedisVersion.Split('.')[0]);// 6 is the current 'latest' version. Will change in the future. Assert.AreEqual(3, response.Data.Instances.Count); for (int i = 0; i < response.Data.Instances.Count; i++) diff --git a/sdk/redis/Azure.ResourceManager.Redis/tests/ScenarioTests/CreateUpdateDeleteFunctionalTests.cs b/sdk/redis/Azure.ResourceManager.Redis/tests/ScenarioTests/CreateUpdateDeleteFunctionalTests.cs index 57580b7e01ec..96c0b66bf0e0 100644 --- a/sdk/redis/Azure.ResourceManager.Redis/tests/ScenarioTests/CreateUpdateDeleteFunctionalTests.cs +++ b/sdk/redis/Azure.ResourceManager.Redis/tests/ScenarioTests/CreateUpdateDeleteFunctionalTests.cs @@ -53,7 +53,8 @@ public async Task CreateUpdateDeleteTest() }, EnableNonSslPort = true }; - var responseUpdate = (await responseCreate.UpdateAsync(patch)).Value; + + var responseUpdate = (await responseCreate.UpdateAsync(WaitUntil.Completed,patch)).Value; Assert.AreEqual(DefaultLocation, responseUpdate.Data.Location); Assert.AreEqual(redisCacheName, responseUpdate.Data.Name); diff --git a/sdk/redis/Azure.ResourceManager.Redis/tests/ScenarioTests/GeoReplicationFunctionalTests.cs b/sdk/redis/Azure.ResourceManager.Redis/tests/ScenarioTests/GeoReplicationFunctionalTests.cs index 60bb96fffc5e..22213c61a791 100644 --- a/sdk/redis/Azure.ResourceManager.Redis/tests/ScenarioTests/GeoReplicationFunctionalTests.cs +++ b/sdk/redis/Azure.ResourceManager.Redis/tests/ScenarioTests/GeoReplicationFunctionalTests.cs @@ -67,6 +67,8 @@ public async Task CreateUpdateDeleteTest() Assert.AreEqual(scResponse.Id, linkServerWithProperties.Data.LinkedRedisCacheId); Assert.AreEqual(AzureLocation.SouthCentralUS, linkServerWithProperties.Data.LinkedRedisCacheLocation); Assert.AreEqual(RedisLinkedServerRole.Secondary, linkServerWithProperties.Data.ServerRole); + Assert.False(string.IsNullOrEmpty(linkServerWithProperties.Data.GeoReplicatedPrimaryHostName)); + Assert.False(string.IsNullOrEmpty(linkServerWithProperties.Data.PrimaryHostName)); // test get response from primary var primaryLinkProperties = (await linkCollection.GetAsync(redisCacheName2)).Value; diff --git a/sdk/redis/Azure.ResourceManager.Redis/tests/ScenarioTests/GetListKeysFunctionalTests.cs b/sdk/redis/Azure.ResourceManager.Redis/tests/ScenarioTests/GetListKeysFunctionalTests.cs index 06a467a08f3c..a703fab259b4 100644 --- a/sdk/redis/Azure.ResourceManager.Redis/tests/ScenarioTests/GetListKeysFunctionalTests.cs +++ b/sdk/redis/Azure.ResourceManager.Redis/tests/ScenarioTests/GetListKeysFunctionalTests.cs @@ -66,10 +66,11 @@ public async Task CreateUpdateDeleteTest() Assert.NotNull(response.SecondaryKey); var afterRegenerateResponse = (await redis.RegenerateKeyAsync(new RedisRegenerateKeyContent(RedisRegenerateKeyType.Primary))).Value; - // Assert equal in playback, - // But actually live not equal - Assert.AreEqual(response.PrimaryKey, afterRegenerateResponse.PrimaryKey); - Assert.AreEqual(response.SecondaryKey, afterRegenerateResponse.SecondaryKey); + + // Won't be equal when recording but might be equal in playback as all key values will be set to "Sanitized" + // Make sure to manually edit session records so tests pass + Assert.AreNotEqual(response.PrimaryKey, afterRegenerateResponse.PrimaryKey); + Assert.AreNotEqual(response.SecondaryKey, afterRegenerateResponse.SecondaryKey); } } } diff --git a/sdk/redis/Azure.ResourceManager.Redis/tests/ScenarioTests/PatchSchedulesFunctionalTests.cs b/sdk/redis/Azure.ResourceManager.Redis/tests/ScenarioTests/PatchSchedulesFunctionalTests.cs index 8d506af6d75f..23ef99a7f72e 100644 --- a/sdk/redis/Azure.ResourceManager.Redis/tests/ScenarioTests/PatchSchedulesFunctionalTests.cs +++ b/sdk/redis/Azure.ResourceManager.Redis/tests/ScenarioTests/PatchSchedulesFunctionalTests.cs @@ -62,6 +62,7 @@ public async Task CreateUpdateDeleteTest() private void ValidateResponseForSchedulePatch(RedisPatchScheduleResource schedulesSet, string redisName) { Assert.AreEqual(2, schedulesSet.Data.ScheduleEntries.Count); + Assert.AreEqual(DefaultLocation, schedulesSet.Data.Location); foreach (var schedule in schedulesSet.Data.ScheduleEntries) { if (schedule.DayOfWeek.Equals(RedisDayOfWeek.Monday)) diff --git a/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/BeginCreateFunctionalTests/BeginCreateFunctionalTest.json b/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/BeginCreateFunctionalTests/BeginCreateFunctionalTest.json index c5d826d75b2d..ca5327d9e145 100644 --- a/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/BeginCreateFunctionalTests/BeginCreateFunctionalTest.json +++ b/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/BeginCreateFunctionalTests/BeginCreateFunctionalTest.json @@ -1,52 +1,40 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d27c175fe8b3cb40a7e6f4600e5b786b-81667bca4bb2154a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0d57a664537b4fbb7e711a3f15446679", + "Connection": "keep-alive", + "traceparent": "00-2fee475b7c488a4e96fd69f2d7baae39-0cb9350168b13f4b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "562d825abcbbc52b533bff16a704481e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "747", + "Content-Length": "405", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 25 Aug 2022 07:34:01 GMT", + "Date": "Tue, 25 Oct 2022 22:31:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a78c0e18-4da5-46e8-844b-ed4716468bac", + "x-ms-correlation-request-id": "8cb3c492-bfe3-4935-bdc1-99246cf79f9a", "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "a78c0e18-4da5-46e8-844b-ed4716468bac", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T073402Z:a78c0e18-4da5-46e8-844b-ed4716468bac" + "x-ms-request-id": "8cb3c492-bfe3-4935-bdc1-99246cf79f9a", + "x-ms-routing-request-id": "WESTUS2:20221025T223102Z:8cb3c492-bfe3-4935-bdc1-99246cf79f9a" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7", "authorizationSource": "RoleBased", "managedByTenants": [], - "tags": { - "TagKey-9823": "TagValue-566", - "TagKey-3481": "TagValue-320", - "TagKey-4926": "TagValue-1187", - "TagKey-751": "TagValue-3921", - "TagKey-1866": "TagValue-8559", - "TagKey-3094": "TagValue-9190", - "TagKey-2449": "TagValue-9", - "TagKey-8379": "TagValue-164", - "TagKey-7470": "TagValue-2205", - "TagKey-4236": "TagValue-3698", - "TagKey-5316": "TagValue-2725" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "subscriptionId": "3919658b-68ae-4509-8c17-6a2238340ae7", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "displayName": "CacheTeam - Austin Tolani", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -56,16 +44,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRG-8303?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/testRG-336?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "43", "Content-Type": "application/json", - "traceparent": "00-89e05bb76efe1e468d89f9a3db673491-792ad9762176e446-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5fa31f4ff702de00de0576f9633a9dfa", + "traceparent": "00-4018b53c0ae87249a7d0f37efc175d1d-3475c9680edc8147-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "862061f7228007be84029baccb9ba913", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -77,21 +65,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "241", + "Connection": "close", + "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 25 Aug 2022 07:34:03 GMT", + "Date": "Tue, 25 Oct 2022 22:31:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "01573051-1766-48ed-aa11-4a0a7dda364e", + "x-ms-correlation-request-id": "3bc92ba4-73ef-4d4c-a142-64da32d3f3c8", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "01573051-1766-48ed-aa11-4a0a7dda364e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T073404Z:01573051-1766-48ed-aa11-4a0a7dda364e" + "x-ms-request-id": "3bc92ba4-73ef-4d4c-a142-64da32d3f3c8", + "x-ms-routing-request-id": "WESTUS2:20221025T223104Z:3bc92ba4-73ef-4d4c-a142-64da32d3f3c8" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8303", - "name": "testRG-8303", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-336", + "name": "testRG-336", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "tags": { @@ -103,16 +92,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8303/providers/Microsoft.Cache/redis/RedisBegin9611?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-336/providers/Microsoft.Cache/redis/RedisBegin3154?api-version=2022-06-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "235", + "Content-Length": "240", "Content-Type": "application/json", - "traceparent": "00-ac57fea31f96df47a92d32945ed26550-85ea06f2c4fe9c49-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220825.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "abeac7b94086a49a61ca63c83419a7d9", + "traceparent": "00-c494165ab1817b4caf93011a866e2e6c-851d236786755949-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "9ecc627cd729dc311bb5afa0c181bead", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -122,7 +111,7 @@ "maxmemory-policy": "allkeys-lru", "maxmemory-reserved": 210 }, - "redisVersion": "6", + "redisVersion": "latest", "replicasPerMaster": 2, "minimumTlsVersion": "1.2", "sku": { @@ -134,33 +123,33 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "abeac7b94086a49a61ca63c83419a7d9", - "Content-Length": "974", + "client-request-id": "9ecc627cd729dc311bb5afa0c181bead", + "Content-Length": "970", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 25 Aug 2022 07:34:09 GMT", + "Date": "Tue, 25 Oct 2022 22:31:07 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8303/providers/Microsoft.Cache/redis/RedisBegin9611?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-336/providers/Microsoft.Cache/redis/RedisBegin3154?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "614d315a-e1bd-4ed5-8ef2-afcfaaa3a94d", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "ba56e69b-5485-4d00-8a0b-2a76faaf2101", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T073409Z:614d315a-e1bd-4ed5-8ef2-afcfaaa3a94d", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "00488516-6f89-4926-8ea8-7e63099becca", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "c136bda5-3096-40e2-9b60-7320f2d32fcd", + "x-ms-routing-request-id": "WESTUS2:20221025T223107Z:00488516-6f89-4926-8ea8-7e63099becca", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8303/providers/Microsoft.Cache/Redis/RedisBegin9611", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-336/providers/Microsoft.Cache/Redis/RedisBegin3154", "location": "East US", - "name": "RedisBegin9611", + "name": "RedisBegin3154", "type": "Microsoft.Cache/Redis", "tags": {}, "properties": { "provisioningState": "Creating", - "redisVersion": "6.0.14", + "redisVersion": "6.0", "sku": { "name": "Premium", "family": "P", @@ -197,7 +186,7 @@ "primaryKey": "Sanitized", "secondaryKey": "Sanitized" }, - "hostName": "RedisBegin9611.redis.cache.windows.net", + "hostName": "RedisBegin3154.redis.cache.windows.net", "port": 6379, "sslPort": 6380, "replicasPerMaster": 2, @@ -207,38 +196,79 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-c494165ab1817b4caf93011a866e2e6c-6e5c87443dc4234a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "e688a502935289cdeeaa646c0e67c381", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "e688a502935289cdeeaa646c0e67c381", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Tue, 25 Oct 2022 22:31:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5023eabb-cb2e-41e3-a78e-b5625faa7742", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "84227c2b-b2e5-464d-8b7c-e64473310951", + "x-ms-routing-request-id": "WESTUS2:20221025T223107Z:5023eabb-cb2e-41e3-a78e-b5625faa7742", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd", + "name": "c136bda5-3096-40e2-9b60-7320f2d32fcd", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ac57fea31f96df47a92d32945ed26550-138e34e70628b24d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9e8ad244e28fdec808baa12c9c16aaeb", + "traceparent": "00-c494165ab1817b4caf93011a866e2e6c-8ab26f7723adc54f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "47f8fedce8bca18d025c50f31da1c293", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "9e8ad244e28fdec808baa12c9c16aaeb", + "client-request-id": "47f8fedce8bca18d025c50f31da1c293", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 07:34:09 GMT", + "Date": "Tue, 25 Oct 2022 22:31:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fbca613f-0133-4141-ac23-498930d9e1b6", + "x-ms-correlation-request-id": "cbde1ea3-272d-411a-b1c3-9643ccc0faf1", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "54123a8c-9239-4b29-a362-5bb722366aa0", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T073409Z:fbca613f-0133-4141-ac23-498930d9e1b6", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "f6230ab1-e925-4bc6-a79e-35f1b57cbf72", + "x-ms-routing-request-id": "WESTUS2:20221025T223108Z:cbde1ea3-272d-411a-b1c3-9643ccc0faf1", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101", - "name": "ba56e69b-5485-4d00-8a0b-2a76faaf2101", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd", + "name": "c136bda5-3096-40e2-9b60-7320f2d32fcd", "status": "InProgress", "startTime": null, "endTime": null, @@ -248,38 +278,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ac57fea31f96df47a92d32945ed26550-0730dba7b6df424b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "25bf20ceb05e58b018937ceaf2554e45", + "traceparent": "00-c494165ab1817b4caf93011a866e2e6c-f6afa9a8e36af64d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "1b9d5915d8f93f5a86633cca76f360e7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "25bf20ceb05e58b018937ceaf2554e45", + "client-request-id": "1b9d5915d8f93f5a86633cca76f360e7", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 07:34:11 GMT", + "Date": "Tue, 25 Oct 2022 22:31:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b194d033-fcbf-4799-8bf6-021217e45780", + "x-ms-correlation-request-id": "90586a98-44f7-4f32-96c0-952de66c665c", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "bd9ca147-5af3-4f33-87d4-716c6aee2ec4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T073411Z:b194d033-fcbf-4799-8bf6-021217e45780", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "21df7bd7-4005-41f4-83aa-6618f4478ce2", + "x-ms-routing-request-id": "WESTUS2:20221025T223109Z:90586a98-44f7-4f32-96c0-952de66c665c", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101", - "name": "ba56e69b-5485-4d00-8a0b-2a76faaf2101", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd", + "name": "c136bda5-3096-40e2-9b60-7320f2d32fcd", "status": "InProgress", "startTime": null, "endTime": null, @@ -289,38 +319,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ac57fea31f96df47a92d32945ed26550-960b0327e3557b46-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6183e793098fc0494c6041d8bf82b917", + "traceparent": "00-c494165ab1817b4caf93011a866e2e6c-0ccf651d4de77b48-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "1ab33872588f199918e6e3f543da6c4c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "6183e793098fc0494c6041d8bf82b917", + "client-request-id": "1ab33872588f199918e6e3f543da6c4c", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 07:34:12 GMT", + "Date": "Tue, 25 Oct 2022 22:31:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dde37a32-f19c-48fb-a32a-72a091316672", + "x-ms-correlation-request-id": "039bc425-16b5-4d1d-8475-8f9be9152e1f", "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "732f6dd5-7026-40ba-a534-1ac068d5cf43", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T073412Z:dde37a32-f19c-48fb-a32a-72a091316672", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "18a8aef8-4796-4459-b32f-38082f311492", + "x-ms-routing-request-id": "WESTUS2:20221025T223110Z:039bc425-16b5-4d1d-8475-8f9be9152e1f", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101", - "name": "ba56e69b-5485-4d00-8a0b-2a76faaf2101", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd", + "name": "c136bda5-3096-40e2-9b60-7320f2d32fcd", "status": "InProgress", "startTime": null, "endTime": null, @@ -330,38 +360,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ac57fea31f96df47a92d32945ed26550-a0953c0cdbc9674c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "357662f2115b931d223185fb65ddebb3", + "traceparent": "00-c494165ab1817b4caf93011a866e2e6c-97248fa6bae30e49-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "b557d1e7a8c90488a4b9c059acc22b0f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "357662f2115b931d223185fb65ddebb3", + "client-request-id": "b557d1e7a8c90488a4b9c059acc22b0f", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 07:34:13 GMT", + "Date": "Tue, 25 Oct 2022 22:31:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e4cb4223-c8e2-44df-b039-3ef8c8ba4a45", + "x-ms-correlation-request-id": "18e9be09-b088-492a-bf00-ac5c5410531c", "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "75f0a14f-1698-4e47-adca-4f7735412076", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T073413Z:e4cb4223-c8e2-44df-b039-3ef8c8ba4a45", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "5e7d0279-1a6d-4485-9c68-855492c0e31e", + "x-ms-routing-request-id": "WESTUS2:20221025T223112Z:18e9be09-b088-492a-bf00-ac5c5410531c", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101", - "name": "ba56e69b-5485-4d00-8a0b-2a76faaf2101", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd", + "name": "c136bda5-3096-40e2-9b60-7320f2d32fcd", "status": "InProgress", "startTime": null, "endTime": null, @@ -371,38 +401,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ac57fea31f96df47a92d32945ed26550-df8a4e41ffc02041-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b5995c6b4893c45cd6fed8fd6fd79896", + "traceparent": "00-c494165ab1817b4caf93011a866e2e6c-897966136ae28e49-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "e58068fca8eebd03c0830312f465fcac", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "b5995c6b4893c45cd6fed8fd6fd79896", + "client-request-id": "e58068fca8eebd03c0830312f465fcac", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 07:34:16 GMT", + "Date": "Tue, 25 Oct 2022 22:31:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ce1e7b43-bd79-47cb-aeb4-b7d147fc0058", + "x-ms-correlation-request-id": "60c0f14e-582a-4b5c-a8ac-eb4391ad5810", "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "d6a24bf7-88fb-4414-bc1e-ff3481a8ce0e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T073416Z:ce1e7b43-bd79-47cb-aeb4-b7d147fc0058", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "e966da23-b84a-4293-a2fb-ada457fe9026", + "x-ms-routing-request-id": "WESTUS2:20221025T223116Z:60c0f14e-582a-4b5c-a8ac-eb4391ad5810", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101", - "name": "ba56e69b-5485-4d00-8a0b-2a76faaf2101", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd", + "name": "c136bda5-3096-40e2-9b60-7320f2d32fcd", "status": "InProgress", "startTime": null, "endTime": null, @@ -412,38 +442,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ac57fea31f96df47a92d32945ed26550-0710d910b195e44e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "90f864d919de81eac9ef3f5d844e5a6e", + "traceparent": "00-c494165ab1817b4caf93011a866e2e6c-fa01fee6dbaa8b41-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "a5e2eff6ab9bca1eafae76d6973f6d55", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "90f864d919de81eac9ef3f5d844e5a6e", + "client-request-id": "a5e2eff6ab9bca1eafae76d6973f6d55", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 07:34:20 GMT", + "Date": "Tue, 25 Oct 2022 22:31:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "216f99d4-6465-4689-a324-37575b8565d8", + "x-ms-correlation-request-id": "2dd1685d-c103-4cc8-b989-d039586e9a70", "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "22ac8796-47b0-4cde-ba68-34fca37b1b98", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T073420Z:216f99d4-6465-4689-a324-37575b8565d8", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "75bc0991-5ba1-4999-9f84-594e7b5c98a8", + "x-ms-routing-request-id": "WESTUS2:20221025T223124Z:2dd1685d-c103-4cc8-b989-d039586e9a70", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101", - "name": "ba56e69b-5485-4d00-8a0b-2a76faaf2101", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd", + "name": "c136bda5-3096-40e2-9b60-7320f2d32fcd", "status": "InProgress", "startTime": null, "endTime": null, @@ -453,38 +483,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ac57fea31f96df47a92d32945ed26550-6f3c67fd58c1db4d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "636c8e7504e9a98406b15e5c3920244a", + "traceparent": "00-c494165ab1817b4caf93011a866e2e6c-8dee17f5e01d9a40-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "daf9d4bb875a3f5ecd9af445a575103f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "636c8e7504e9a98406b15e5c3920244a", + "client-request-id": "daf9d4bb875a3f5ecd9af445a575103f", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 07:34:28 GMT", + "Date": "Tue, 25 Oct 2022 22:31:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2b5cd225-6263-474c-82b5-493df0f4c629", + "x-ms-correlation-request-id": "ce1e5394-2dce-4dee-ae41-87642a64f1b9", "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "9cf36cbd-5ee3-4dee-b85e-3b92f149d907", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T073428Z:2b5cd225-6263-474c-82b5-493df0f4c629", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "9587f5b1-112e-404c-9504-2ba4ca65a6f7", + "x-ms-routing-request-id": "WESTUS2:20221025T223141Z:ce1e5394-2dce-4dee-ae41-87642a64f1b9", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101", - "name": "ba56e69b-5485-4d00-8a0b-2a76faaf2101", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd", + "name": "c136bda5-3096-40e2-9b60-7320f2d32fcd", "status": "InProgress", "startTime": null, "endTime": null, @@ -494,38 +524,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ac57fea31f96df47a92d32945ed26550-70373a705906204d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0121ef995be552d47217eba408fe4087", + "traceparent": "00-c494165ab1817b4caf93011a866e2e6c-dfc1f7a436df1f46-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "bc6214bc86e050734ab5353f312c2581", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "0121ef995be552d47217eba408fe4087", + "client-request-id": "bc6214bc86e050734ab5353f312c2581", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 07:34:44 GMT", + "Date": "Tue, 25 Oct 2022 22:32:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "50d9729e-766c-4920-b480-47e166c30baf", + "x-ms-correlation-request-id": "d631949c-a01c-485a-85d0-4c2d1ed301b7", "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "8535ee33-8f90-4d5d-9c90-529d227ca949", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T073445Z:50d9729e-766c-4920-b480-47e166c30baf", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "71f2e676-2ea6-4e40-98bf-cdc5fb70654c", + "x-ms-routing-request-id": "WESTUS2:20221025T223213Z:d631949c-a01c-485a-85d0-4c2d1ed301b7", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101", - "name": "ba56e69b-5485-4d00-8a0b-2a76faaf2101", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd", + "name": "c136bda5-3096-40e2-9b60-7320f2d32fcd", "status": "InProgress", "startTime": null, "endTime": null, @@ -535,38 +565,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ac57fea31f96df47a92d32945ed26550-85fcf3d5eab7db45-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e1886aa3356bd5ace04e892dba8d48a9", + "traceparent": "00-c494165ab1817b4caf93011a866e2e6c-8859135f7f7a444a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "1f57ae16216b6f5290a2d701b7d8253a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "e1886aa3356bd5ace04e892dba8d48a9", + "client-request-id": "1f57ae16216b6f5290a2d701b7d8253a", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 07:35:17 GMT", + "Date": "Tue, 25 Oct 2022 22:32:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5383b490-d2ad-4aff-bdce-872cd15398d8", + "x-ms-correlation-request-id": "d8182156-3f84-4b2f-a0e4-4284488dd530", "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "13b20e85-7126-41b7-b63b-f3f5badcbf2b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T073517Z:5383b490-d2ad-4aff-bdce-872cd15398d8", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "73f4dd5b-8bcf-4d63-9f4b-3c395bf5f53a", + "x-ms-routing-request-id": "WESTUS2:20221025T223245Z:d8182156-3f84-4b2f-a0e4-4284488dd530", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101", - "name": "ba56e69b-5485-4d00-8a0b-2a76faaf2101", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd", + "name": "c136bda5-3096-40e2-9b60-7320f2d32fcd", "status": "InProgress", "startTime": null, "endTime": null, @@ -576,38 +606,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ac57fea31f96df47a92d32945ed26550-4238e99c1982d14d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "94c4f4ca592d1988b919f1d218e0a107", + "traceparent": "00-c494165ab1817b4caf93011a866e2e6c-2a83923d1c3e0f4a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "8219379eb0dc347461a890a4511f0ea0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "94c4f4ca592d1988b919f1d218e0a107", + "client-request-id": "8219379eb0dc347461a890a4511f0ea0", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 07:35:49 GMT", + "Date": "Tue, 25 Oct 2022 22:33:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "54dcbf70-c874-424a-9b7b-d6a2df2f3835", + "x-ms-correlation-request-id": "1439f0a3-b7df-4c20-b720-91b52e1bb94c", "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "82c6aa77-02ac-4ad2-a3a8-0055810cd1cd", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T073549Z:54dcbf70-c874-424a-9b7b-d6a2df2f3835", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "f035befc-0c5b-4ed7-8d7f-95fa8cafeb23", + "x-ms-routing-request-id": "WESTUS2:20221025T223317Z:1439f0a3-b7df-4c20-b720-91b52e1bb94c", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101", - "name": "ba56e69b-5485-4d00-8a0b-2a76faaf2101", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd", + "name": "c136bda5-3096-40e2-9b60-7320f2d32fcd", "status": "InProgress", "startTime": null, "endTime": null, @@ -617,38 +647,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ac57fea31f96df47a92d32945ed26550-47f18419bb61a74d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ceb9d670439763df424b2196d2a697e4", + "traceparent": "00-c494165ab1817b4caf93011a866e2e6c-fa8bf2874b750747-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "f72f7374f11e9ad3c2f32b3dae719971", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "ceb9d670439763df424b2196d2a697e4", + "client-request-id": "f72f7374f11e9ad3c2f32b3dae719971", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 07:36:22 GMT", + "Date": "Tue, 25 Oct 2022 22:33:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c3aac5cc-39ad-48cb-a410-85630e2432f0", + "x-ms-correlation-request-id": "b26d63ef-a422-4604-a290-c6f5b8238a75", "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "1276f1c4-25d5-4c08-93a8-06e1bc5ad0b7", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T073622Z:c3aac5cc-39ad-48cb-a410-85630e2432f0", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "04a32dab-5c87-41f6-a433-e01a1db4388c", + "x-ms-routing-request-id": "WESTUS2:20221025T223349Z:b26d63ef-a422-4604-a290-c6f5b8238a75", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101", - "name": "ba56e69b-5485-4d00-8a0b-2a76faaf2101", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd", + "name": "c136bda5-3096-40e2-9b60-7320f2d32fcd", "status": "InProgress", "startTime": null, "endTime": null, @@ -658,38 +688,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ac57fea31f96df47a92d32945ed26550-7500921427f3ec43-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "13d942ceab3a4a5ae16e275143dabdff", + "traceparent": "00-c494165ab1817b4caf93011a866e2e6c-339d9692ec786942-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "faa0fa90a31365a43922bdc391ae1e71", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "13d942ceab3a4a5ae16e275143dabdff", + "client-request-id": "faa0fa90a31365a43922bdc391ae1e71", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 07:36:53 GMT", + "Date": "Tue, 25 Oct 2022 22:34:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b79086e3-f963-408e-ba2c-d3c4ba195fdd", + "x-ms-correlation-request-id": "15b626fd-d771-4791-800d-1e2abc4b4b99", "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "2b570992-f7e4-45bb-abc9-022740d2ecf7", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T073654Z:b79086e3-f963-408e-ba2c-d3c4ba195fdd", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "7afee737-aebf-40e8-a565-c0e3be3a8a7e", + "x-ms-routing-request-id": "WESTUS2:20221025T223421Z:15b626fd-d771-4791-800d-1e2abc4b4b99", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101", - "name": "ba56e69b-5485-4d00-8a0b-2a76faaf2101", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd", + "name": "c136bda5-3096-40e2-9b60-7320f2d32fcd", "status": "InProgress", "startTime": null, "endTime": null, @@ -699,38 +729,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ac57fea31f96df47a92d32945ed26550-d05d0273a488c84b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e4bc81ad79d38711156052e138f14713", + "traceparent": "00-c494165ab1817b4caf93011a866e2e6c-981f3b6d8912334f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "438d36942ea8ad1c647ec0e9843785ef", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "e4bc81ad79d38711156052e138f14713", + "client-request-id": "438d36942ea8ad1c647ec0e9843785ef", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 07:37:26 GMT", + "Date": "Tue, 25 Oct 2022 22:34:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "316d47a3-e987-4afe-b7c1-ecd7ed73d784", + "x-ms-correlation-request-id": "54cf60a4-cc86-4ee9-9467-5db1a813e608", "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "37de56f5-179e-4b02-828b-8963438a6910", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T073726Z:316d47a3-e987-4afe-b7c1-ecd7ed73d784", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "79cf96b8-a293-4dca-868a-da835ea6eaf4", + "x-ms-routing-request-id": "WESTUS2:20221025T223453Z:54cf60a4-cc86-4ee9-9467-5db1a813e608", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101", - "name": "ba56e69b-5485-4d00-8a0b-2a76faaf2101", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd", + "name": "c136bda5-3096-40e2-9b60-7320f2d32fcd", "status": "InProgress", "startTime": null, "endTime": null, @@ -740,38 +770,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ac57fea31f96df47a92d32945ed26550-bb2fe0c6854ce545-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d5030c828d06c5cd7c6eed291b8d2067", + "traceparent": "00-c494165ab1817b4caf93011a866e2e6c-441ce813a5d7c747-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "56131e0e137fd18dcecabefb330f0914", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "d5030c828d06c5cd7c6eed291b8d2067", + "client-request-id": "56131e0e137fd18dcecabefb330f0914", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 07:37:59 GMT", + "Date": "Tue, 25 Oct 2022 22:35:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "86b3d606-14c7-4c98-be4d-6e4bd9c64f6e", + "x-ms-correlation-request-id": "f41390e5-0432-461f-a164-9539fd9a0f2a", "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "1751e0e2-2b24-4e52-94e7-dee9225c9575", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T073759Z:86b3d606-14c7-4c98-be4d-6e4bd9c64f6e", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "cbf5bcc3-5032-425d-9fef-9a165836382e", + "x-ms-routing-request-id": "WESTUS2:20221025T223525Z:f41390e5-0432-461f-a164-9539fd9a0f2a", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101", - "name": "ba56e69b-5485-4d00-8a0b-2a76faaf2101", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd", + "name": "c136bda5-3096-40e2-9b60-7320f2d32fcd", "status": "InProgress", "startTime": null, "endTime": null, @@ -781,38 +811,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ac57fea31f96df47a92d32945ed26550-62ce6af4b61e5941-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "50e9218eb3ea54113051fed9597812ef", + "traceparent": "00-c494165ab1817b4caf93011a866e2e6c-5ac3f37b48f27146-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "78a8bad555e462c9def29694e2bbe001", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "50e9218eb3ea54113051fed9597812ef", + "client-request-id": "78a8bad555e462c9def29694e2bbe001", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 07:38:30 GMT", + "Date": "Tue, 25 Oct 2022 22:35:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "60caf958-8142-4628-837e-930d1a8aadda", + "x-ms-correlation-request-id": "330a1314-fd5e-439a-93e6-23960257908b", "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "4107d7b6-1131-42e7-a164-c5aa960637d8", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T073831Z:60caf958-8142-4628-837e-930d1a8aadda", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "5af35be1-04bb-4f35-bd25-4a6334bf623c", + "x-ms-routing-request-id": "WESTUS2:20221025T223557Z:330a1314-fd5e-439a-93e6-23960257908b", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101", - "name": "ba56e69b-5485-4d00-8a0b-2a76faaf2101", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd", + "name": "c136bda5-3096-40e2-9b60-7320f2d32fcd", "status": "InProgress", "startTime": null, "endTime": null, @@ -822,38 +852,40 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ac57fea31f96df47a92d32945ed26550-1d740484be018c48-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "36cf1426e7d720f9b3f767658ce86b87", + "Connection": "close", + "traceparent": "00-c494165ab1817b4caf93011a866e2e6c-9b79075bf8759849-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "73b4ce9cc79a81f1a8bb75de6f207a54", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "36cf1426e7d720f9b3f767658ce86b87", + "client-request-id": "73b4ce9cc79a81f1a8bb75de6f207a54", + "Connection": "close", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 07:39:03 GMT", + "Date": "Tue, 25 Oct 2022 22:36:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "13bc07cf-fc10-4bd3-89e6-2f0871762e35", + "x-ms-correlation-request-id": "4f79776a-30ac-487f-8985-b49fdfef0f37", "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "bce7589d-7630-43bb-a89b-36fea3143ee4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T073903Z:13bc07cf-fc10-4bd3-89e6-2f0871762e35", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "08f601ea-287a-49c9-8b6f-3ff6dd33706c", + "x-ms-routing-request-id": "WESTUS2:20221025T223629Z:4f79776a-30ac-487f-8985-b49fdfef0f37", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101", - "name": "ba56e69b-5485-4d00-8a0b-2a76faaf2101", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd", + "name": "c136bda5-3096-40e2-9b60-7320f2d32fcd", "status": "InProgress", "startTime": null, "endTime": null, @@ -863,38 +895,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ac57fea31f96df47a92d32945ed26550-41b7d5f5a5e26746-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1653eb40f708ce28fbaea5b48ff46b03", + "traceparent": "00-c494165ab1817b4caf93011a866e2e6c-04a0e430a1ec9b49-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "c913ac750d8eb80b55b1788c7df9ee12", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "1653eb40f708ce28fbaea5b48ff46b03", + "client-request-id": "c913ac750d8eb80b55b1788c7df9ee12", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 07:39:36 GMT", + "Date": "Tue, 25 Oct 2022 22:37:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0bfee2da-3b7e-468e-9923-34d226ec27c1", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "a791caa4-20d2-4116-9902-3e8f9a33c48a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T073936Z:0bfee2da-3b7e-468e-9923-34d226ec27c1", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "dc895872-17de-4eea-9f34-6acdc4f4e0c5", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "e9e71591-970a-4ba0-a1c8-c31f6291c100", + "x-ms-routing-request-id": "WESTUS2:20221025T223702Z:dc895872-17de-4eea-9f34-6acdc4f4e0c5", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101", - "name": "ba56e69b-5485-4d00-8a0b-2a76faaf2101", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd", + "name": "c136bda5-3096-40e2-9b60-7320f2d32fcd", "status": "InProgress", "startTime": null, "endTime": null, @@ -904,38 +936,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ac57fea31f96df47a92d32945ed26550-cddb8d1c863a314c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0702fd5ce9bea68f28c89cf34babc848", + "traceparent": "00-c494165ab1817b4caf93011a866e2e6c-7d0fddaeab97a242-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "655ebce9955b0d7ac927cf28e0eaf2be", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "0702fd5ce9bea68f28c89cf34babc848", + "client-request-id": "655ebce9955b0d7ac927cf28e0eaf2be", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 07:40:09 GMT", + "Date": "Tue, 25 Oct 2022 22:37:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "acc6a021-dc6f-475c-9d76-ea64e7894b53", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "f1b0e719-0da6-48bc-83c0-bd946870218e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T074009Z:acc6a021-dc6f-475c-9d76-ea64e7894b53", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "412f930e-8f7e-4709-a375-b3aa9f6e028c", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "a5afe6ff-c04c-48f9-8438-e06f65edeb26", + "x-ms-routing-request-id": "WESTUS2:20221025T223734Z:412f930e-8f7e-4709-a375-b3aa9f6e028c", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101", - "name": "ba56e69b-5485-4d00-8a0b-2a76faaf2101", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd", + "name": "c136bda5-3096-40e2-9b60-7320f2d32fcd", "status": "InProgress", "startTime": null, "endTime": null, @@ -945,38 +977,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ac57fea31f96df47a92d32945ed26550-caef025b11bb8c4b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6e9976e6fb252fe6eb003b29414491bf", + "traceparent": "00-c494165ab1817b4caf93011a866e2e6c-296f0ab1b7cf3240-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "351e427816a78f73c2fb1ee84f6503af", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "6e9976e6fb252fe6eb003b29414491bf", + "client-request-id": "351e427816a78f73c2fb1ee84f6503af", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 07:40:40 GMT", + "Date": "Tue, 25 Oct 2022 22:38:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "00d2f2bc-0317-4550-ad1d-80c4cd9d4b5c", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "0cd13050-910b-4a26-b14f-817982de02dc", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T074041Z:00d2f2bc-0317-4550-ad1d-80c4cd9d4b5c", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "d71a3cb4-d343-43dc-b37a-fd20f8f864ee", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "cd778130-8acc-499d-b996-29e7fa9b1bf6", + "x-ms-routing-request-id": "WESTUS2:20221025T223806Z:d71a3cb4-d343-43dc-b37a-fd20f8f864ee", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101", - "name": "ba56e69b-5485-4d00-8a0b-2a76faaf2101", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd", + "name": "c136bda5-3096-40e2-9b60-7320f2d32fcd", "status": "InProgress", "startTime": null, "endTime": null, @@ -986,38 +1018,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ac57fea31f96df47a92d32945ed26550-57a8a6d579daee47-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "8f08648b63e656c95bacee3f5a35824f", + "traceparent": "00-c494165ab1817b4caf93011a866e2e6c-2c3ff86cf10bce49-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "b3f563cd15c1dff8320500663de2d86a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "8f08648b63e656c95bacee3f5a35824f", + "client-request-id": "b3f563cd15c1dff8320500663de2d86a", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 07:41:13 GMT", + "Date": "Tue, 25 Oct 2022 22:38:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "af3d14fc-6c32-4d1a-91cf-accd5347262b", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "2949e55d-1823-4761-af78-e083826429e2", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T074114Z:af3d14fc-6c32-4d1a-91cf-accd5347262b", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "97bc8962-3a19-4cbe-8337-d1f2848a7384", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "a0d6a0e1-ff78-46ec-8b21-a5ebb2c02610", + "x-ms-routing-request-id": "WESTUS2:20221025T223838Z:97bc8962-3a19-4cbe-8337-d1f2848a7384", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101", - "name": "ba56e69b-5485-4d00-8a0b-2a76faaf2101", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd", + "name": "c136bda5-3096-40e2-9b60-7320f2d32fcd", "status": "InProgress", "startTime": null, "endTime": null, @@ -1027,38 +1059,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ac57fea31f96df47a92d32945ed26550-0a5934ade2c37346-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "18ce5de5fd5a60de16d21bbdae6664e3", + "traceparent": "00-c494165ab1817b4caf93011a866e2e6c-0e092cf8ec47c14d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "3a13b9bfb9dad26a49cfa25f7791be64", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "18ce5de5fd5a60de16d21bbdae6664e3", + "client-request-id": "3a13b9bfb9dad26a49cfa25f7791be64", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 07:41:45 GMT", + "Date": "Tue, 25 Oct 2022 22:39:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1c020ee8-1896-403f-b3be-5858e272bd6f", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "b16faed2-adaa-456e-a9c6-b9094d5875cd", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T074146Z:1c020ee8-1896-403f-b3be-5858e272bd6f", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "de226d84-f9ce-49d1-9b3e-939b60cf631d", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "c8ef10ee-c120-4303-855b-5dc0e8ac4bfd", + "x-ms-routing-request-id": "WESTUS2:20221025T223910Z:de226d84-f9ce-49d1-9b3e-939b60cf631d", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101", - "name": "ba56e69b-5485-4d00-8a0b-2a76faaf2101", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd", + "name": "c136bda5-3096-40e2-9b60-7320f2d32fcd", "status": "InProgress", "startTime": null, "endTime": null, @@ -1068,38 +1100,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ac57fea31f96df47a92d32945ed26550-1427667095b8364d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e767dd3739a28261ad4213780da7d5b6", + "traceparent": "00-c494165ab1817b4caf93011a866e2e6c-b20ac150151f6d4d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "7c5b20233ef463fc493e03a1160c51e0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "e767dd3739a28261ad4213780da7d5b6", + "client-request-id": "7c5b20233ef463fc493e03a1160c51e0", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 07:42:18 GMT", + "Date": "Tue, 25 Oct 2022 22:39:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bd225add-9eb0-4f5b-adac-7ea8ffc75983", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "4af0080e-537b-49e3-a220-9533cadff910", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T074218Z:bd225add-9eb0-4f5b-adac-7ea8ffc75983", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "5700ff3d-b714-412c-829c-eb39238e7af9", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "08b75e4e-8aba-49e3-90b2-4ae820289afd", + "x-ms-routing-request-id": "WESTUS2:20221025T223942Z:5700ff3d-b714-412c-829c-eb39238e7af9", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101", - "name": "ba56e69b-5485-4d00-8a0b-2a76faaf2101", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd", + "name": "c136bda5-3096-40e2-9b60-7320f2d32fcd", "status": "InProgress", "startTime": null, "endTime": null, @@ -1109,38 +1141,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ac57fea31f96df47a92d32945ed26550-2f4b6435b8cf1d46-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e443eb7e78758e6485a87813480ba8f4", + "traceparent": "00-c494165ab1817b4caf93011a866e2e6c-b91c6c6491eb0841-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "9529b323c85114d4f8226af1739868a1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "e443eb7e78758e6485a87813480ba8f4", + "client-request-id": "9529b323c85114d4f8226af1739868a1", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 07:42:51 GMT", + "Date": "Tue, 25 Oct 2022 22:40:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "11ba7cb3-85d6-4b15-8061-7e04497cd081", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "b1ddaf61-6a31-4e87-b299-be23508d34b0", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T074251Z:11ba7cb3-85d6-4b15-8061-7e04497cd081", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "b9605b27-980d-4760-bc0a-69b5457eb740", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "5580b10c-310d-42d0-b062-19f2396d816e", + "x-ms-routing-request-id": "WESTUS2:20221025T224015Z:b9605b27-980d-4760-bc0a-69b5457eb740", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101", - "name": "ba56e69b-5485-4d00-8a0b-2a76faaf2101", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd", + "name": "c136bda5-3096-40e2-9b60-7320f2d32fcd", "status": "InProgress", "startTime": null, "endTime": null, @@ -1150,38 +1182,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ac57fea31f96df47a92d32945ed26550-dcfcde9cb61dde44-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "7c080a479acdacacfb4c6b17ea66536f", + "traceparent": "00-c494165ab1817b4caf93011a866e2e6c-23a79953cc49d245-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "1d429c475b868075bdb0f09cb5c8bc3c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "7c080a479acdacacfb4c6b17ea66536f", + "client-request-id": "1d429c475b868075bdb0f09cb5c8bc3c", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 07:43:22 GMT", + "Date": "Tue, 25 Oct 2022 22:40:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f42565aa-7ca8-48fb-bc29-a9ab1541a9b8", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "0bedf88c-5e76-4b4c-9a6f-e8b00d1cd862", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T074323Z:f42565aa-7ca8-48fb-bc29-a9ab1541a9b8", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "32047d7b-4c8e-431d-b059-8583014da337", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "01e67024-b134-4afc-9b98-160a79360be8", + "x-ms-routing-request-id": "WESTUS2:20221025T224047Z:32047d7b-4c8e-431d-b059-8583014da337", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101", - "name": "ba56e69b-5485-4d00-8a0b-2a76faaf2101", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd", + "name": "c136bda5-3096-40e2-9b60-7320f2d32fcd", "status": "InProgress", "startTime": null, "endTime": null, @@ -1191,38 +1223,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ac57fea31f96df47a92d32945ed26550-7a89341ee093ee42-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c23f65fc8023be6d78d961fac04e3aa1", + "traceparent": "00-c494165ab1817b4caf93011a866e2e6c-ec5d4167248e5141-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "c43cc17e29685a124c4784d2d40aefb1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "c23f65fc8023be6d78d961fac04e3aa1", + "client-request-id": "c43cc17e29685a124c4784d2d40aefb1", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 07:43:56 GMT", + "Date": "Tue, 25 Oct 2022 22:41:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a58a644c-c5a0-42c6-a6c7-44b8f6f27973", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "f9b34f43-a17b-4e74-a1d2-4cd8f8d505fd", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T074356Z:a58a644c-c5a0-42c6-a6c7-44b8f6f27973", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "ff7dfd0c-c3b3-4529-a8cf-5aed49c6a84d", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "92313069-8d69-4ef7-a58f-b154af6ee67e", + "x-ms-routing-request-id": "WESTUS2:20221025T224119Z:ff7dfd0c-c3b3-4529-a8cf-5aed49c6a84d", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101", - "name": "ba56e69b-5485-4d00-8a0b-2a76faaf2101", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd", + "name": "c136bda5-3096-40e2-9b60-7320f2d32fcd", "status": "InProgress", "startTime": null, "endTime": null, @@ -1232,38 +1264,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ac57fea31f96df47a92d32945ed26550-c3988f464fa6e347-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "02301e9a599fe3e83e96e9290d4ca31f", + "traceparent": "00-c494165ab1817b4caf93011a866e2e6c-0d3a51b1773eca48-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "795a62d633c9c7593da8d7a0d8385e2f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "02301e9a599fe3e83e96e9290d4ca31f", + "client-request-id": "795a62d633c9c7593da8d7a0d8385e2f", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 07:44:28 GMT", + "Date": "Tue, 25 Oct 2022 22:41:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6c8604f2-10ab-4e48-93ea-3775be5080a1", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "9fd45516-6d56-4208-83c6-43c36c586c67", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T074429Z:6c8604f2-10ab-4e48-93ea-3775be5080a1", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "819daa2c-bff2-4edb-b99e-a552fbd99516", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "44012058-09a0-47a7-8047-9000ad9476c4", + "x-ms-routing-request-id": "WESTUS2:20221025T224151Z:819daa2c-bff2-4edb-b99e-a552fbd99516", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101", - "name": "ba56e69b-5485-4d00-8a0b-2a76faaf2101", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd", + "name": "c136bda5-3096-40e2-9b60-7320f2d32fcd", "status": "InProgress", "startTime": null, "endTime": null, @@ -1273,38 +1305,40 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ac57fea31f96df47a92d32945ed26550-ebedb7d5e6a5704b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e2160954e5ccc7d09d4903f439b2ecac", + "Connection": "close", + "traceparent": "00-c494165ab1817b4caf93011a866e2e6c-cbb423bc7a133a45-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "b1722d65a45c1d3889e7d13fd7a3acb2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "e2160954e5ccc7d09d4903f439b2ecac", + "client-request-id": "b1722d65a45c1d3889e7d13fd7a3acb2", + "Connection": "close", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 07:45:01 GMT", + "Date": "Tue, 25 Oct 2022 22:42:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "235b5b6f-e383-48fe-8e36-847f781c6412", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "b54c895a-2a53-434e-8e83-a0cc6469aec7", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T074502Z:235b5b6f-e383-48fe-8e36-847f781c6412", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "d7fdfa47-d424-4ecd-8d2a-da1af2ed522f", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "c541816f-12cb-4654-b445-e733dd5ef018", + "x-ms-routing-request-id": "WESTUS2:20221025T224224Z:d7fdfa47-d424-4ecd-8d2a-da1af2ed522f", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101", - "name": "ba56e69b-5485-4d00-8a0b-2a76faaf2101", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd", + "name": "c136bda5-3096-40e2-9b60-7320f2d32fcd", "status": "InProgress", "startTime": null, "endTime": null, @@ -1314,38 +1348,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ac57fea31f96df47a92d32945ed26550-4020a2285f081441-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "cb7dc9125135a3d07c5b848d9644b12c", + "traceparent": "00-c494165ab1817b4caf93011a866e2e6c-2d9fb91265998d43-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "53c53fc1436e4b73677586bf51728214", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "cb7dc9125135a3d07c5b848d9644b12c", + "client-request-id": "53c53fc1436e4b73677586bf51728214", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 07:45:33 GMT", + "Date": "Tue, 25 Oct 2022 22:42:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "87fa763a-0614-4105-b2ca-33c36de70122", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "bdacf433-50aa-4774-a795-f6a97680cb96", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T074534Z:87fa763a-0614-4105-b2ca-33c36de70122", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "5a938ddc-abcb-43f3-80a1-3e99d89cbdf7", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "2155c116-9f33-49cd-bf7e-022cf9c999ae", + "x-ms-routing-request-id": "WESTUS2:20221025T224256Z:5a938ddc-abcb-43f3-80a1-3e99d89cbdf7", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101", - "name": "ba56e69b-5485-4d00-8a0b-2a76faaf2101", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd", + "name": "c136bda5-3096-40e2-9b60-7320f2d32fcd", "status": "InProgress", "startTime": null, "endTime": null, @@ -1355,38 +1389,79 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ac57fea31f96df47a92d32945ed26550-294530b25071b042-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b7a641355737b5d54d69655555f4aa8c", + "traceparent": "00-c494165ab1817b4caf93011a866e2e6c-4f6feb288e8e3047-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "a66c54e93d973254293defe1621af09a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "b7a641355737b5d54d69655555f4aa8c", + "client-request-id": "a66c54e93d973254293defe1621af09a", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Tue, 25 Oct 2022 22:43:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "34481d50-a6ef-4515-bd49-aaa935a0b0d9", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "e3ee79b7-65b3-4058-80b0-7cf44d1bc58d", + "x-ms-routing-request-id": "WESTUS2:20221025T224328Z:34481d50-a6ef-4515-bd49-aaa935a0b0d9", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd", + "name": "c136bda5-3096-40e2-9b60-7320f2d32fcd", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-c494165ab1817b4caf93011a866e2e6c-a1564e68c2dc8c4c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "98df25fc0a7222c1ba2749e61d79cb17", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "98df25fc0a7222c1ba2749e61d79cb17", "Content-Length": "352", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 07:46:06 GMT", + "Date": "Tue, 25 Oct 2022 22:44:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d7842767-714a-4fbb-a366-b8b2c6bd263e", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "f1afecdf-6d86-41b4-87b2-8b9a4cda20e6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T074606Z:d7842767-714a-4fbb-a366-b8b2c6bd263e", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "3217315e-9b10-4b35-9cea-9a2999e553e1", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "8adeeb44-583f-4741-b265-1e3c7fc514ba", + "x-ms-routing-request-id": "WESTUS2:20221025T224400Z:3217315e-9b10-4b35-9cea-9a2999e553e1", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ba56e69b-5485-4d00-8a0b-2a76faaf2101", - "name": "ba56e69b-5485-4d00-8a0b-2a76faaf2101", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/c136bda5-3096-40e2-9b60-7320f2d32fcd", + "name": "c136bda5-3096-40e2-9b60-7320f2d32fcd", "status": "Succeeded", "startTime": null, "endTime": null, @@ -1396,43 +1471,43 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8303/providers/Microsoft.Cache/redis/RedisBegin9611?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-336/providers/Microsoft.Cache/redis/RedisBegin3154?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ac57fea31f96df47a92d32945ed26550-3df2147aad702847-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "43173ca9d8cf03ea3973657060433058", + "traceparent": "00-c494165ab1817b4caf93011a866e2e6c-978044409c7a7c49-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "8256bd640536831aeb932a315491e84d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "43173ca9d8cf03ea3973657060433058", - "Content-Length": "960", + "client-request-id": "8256bd640536831aeb932a315491e84d", + "Content-Length": "956", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 25 Aug 2022 07:46:07 GMT", + "Date": "Tue, 25 Oct 2022 22:44:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3a38c1f6-6208-42ce-a03b-0b9a8378c1ce", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "7f78f511-6f41-48eb-b0ab-1bb6d4496d93", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T074607Z:3a38c1f6-6208-42ce-a03b-0b9a8378c1ce", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "fc7c8234-1add-434e-af94-cf76d319955a", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "aa65c966-7f14-4a62-80f7-02796fa53d1d", + "x-ms-routing-request-id": "WESTUS2:20221025T224401Z:fc7c8234-1add-434e-af94-cf76d319955a", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8303/providers/Microsoft.Cache/Redis/RedisBegin9611", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-336/providers/Microsoft.Cache/Redis/RedisBegin3154", "location": "East US", - "name": "RedisBegin9611", + "name": "RedisBegin3154", "type": "Microsoft.Cache/Redis", "tags": {}, "properties": { "provisioningState": "Succeeded", - "redisVersion": "6.0.14", + "redisVersion": "6.0", "sku": { "name": "Premium", "family": "P", @@ -1469,7 +1544,7 @@ "maxmemory-delta": "642" }, "accessKeys": null, - "hostName": "RedisBegin9611.redis.cache.windows.net", + "hostName": "RedisBegin3154.redis.cache.windows.net", "port": 6379, "sslPort": 6380, "replicasPerMaster": 2, @@ -1479,540 +1554,509 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8303/providers/Microsoft.Cache/redis/RedisBegin9611?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-336/providers/Microsoft.Cache/redis/RedisBegin3154?api-version=2022-06-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b17207d402191846badcc90d1f6aae54-a0731714574fcb40-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220825.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f7bed797350cba75f4c87dcbec7a4d88", + "traceparent": "00-cc7f474729ddc34bac2c5e0a6c7cb0a1-f1e751fc07ed6441-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "2cc2ec85ea92dea1924aeb70f46d14af", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "f7bed797350cba75f4c87dcbec7a4d88", + "client-request-id": "2cc2ec85ea92dea1924aeb70f46d14af", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 07:46:08 GMT", + "Date": "Tue, 25 Oct 2022 22:44:01 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/81bc119f-7a0b-4f2f-ad8a-01d056c8b47c?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/664ec9a0-6965-4a45-9a77-8ea028d1285b?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f064c6dc-5b62-4ab9-ac0a-d6c3f4cb77e5", + "x-ms-correlation-request-id": "abaa2ffe-beda-4267-a22a-6e375435cedd", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-request-id": "81bc119f-7a0b-4f2f-ad8a-01d056c8b47c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T074609Z:f064c6dc-5b62-4ab9-ac0a-d6c3f4cb77e5", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "664ec9a0-6965-4a45-9a77-8ea028d1285b", + "x-ms-routing-request-id": "WESTUS2:20221025T224401Z:abaa2ffe-beda-4267-a22a-6e375435cedd", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/81bc119f-7a0b-4f2f-ad8a-01d056c8b47c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/664ec9a0-6965-4a45-9a77-8ea028d1285b?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b17207d402191846badcc90d1f6aae54-54b92cd49be23449-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "7ebe0c38b2367480c75c4e075a1f17be", + "traceparent": "00-cc7f474729ddc34bac2c5e0a6c7cb0a1-bc66bacecd5b7842-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "3061fb3e9fb77a841b77f0eb19aa8e7d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "7ebe0c38b2367480c75c4e075a1f17be", + "client-request-id": "3061fb3e9fb77a841b77f0eb19aa8e7d", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 07:46:09 GMT", + "Date": "Tue, 25 Oct 2022 22:44:02 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/81bc119f-7a0b-4f2f-ad8a-01d056c8b47c?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/664ec9a0-6965-4a45-9a77-8ea028d1285b?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "15f373ac-ee41-4a69-b061-c532249f5a25", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "4d1141f2-aa82-4249-af9b-9150b632b676", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T074609Z:15f373ac-ee41-4a69-b061-c532249f5a25", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/81bc119f-7a0b-4f2f-ad8a-01d056c8b47c?api-version=2021-06-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-b17207d402191846badcc90d1f6aae54-eaad63d7fb933147-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "68bfdd25d660292b7a60a069b7b1c890", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "client-request-id": "68bfdd25d660292b7a60a069b7b1c890", - "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 07:46:10 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/81bc119f-7a0b-4f2f-ad8a-01d056c8b47c?api-version=2021-06-01", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d46e5092-21de-468b-84eb-4d6752841839", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "0bbb0674-9fca-4964-8b43-97a84c0efe41", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T074611Z:d46e5092-21de-468b-84eb-4d6752841839", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "c6d0cd65-8cd9-4ca2-b8a3-62d821e7d112", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "f8e0e9a6-1ce3-4f3a-bc80-e7aaec8695ba", + "x-ms-routing-request-id": "WESTUS2:20221025T224402Z:c6d0cd65-8cd9-4ca2-b8a3-62d821e7d112", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/81bc119f-7a0b-4f2f-ad8a-01d056c8b47c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/664ec9a0-6965-4a45-9a77-8ea028d1285b?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b17207d402191846badcc90d1f6aae54-d9abddd94151e146-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "df927373cfbcfe51786e93d01f560237", + "traceparent": "00-cc7f474729ddc34bac2c5e0a6c7cb0a1-26b67f3b76a92b4f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "7cbf7a7e4314178988ca22363dc2fe01", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "df927373cfbcfe51786e93d01f560237", + "client-request-id": "7cbf7a7e4314178988ca22363dc2fe01", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 07:46:12 GMT", + "Date": "Tue, 25 Oct 2022 22:44:03 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/81bc119f-7a0b-4f2f-ad8a-01d056c8b47c?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/664ec9a0-6965-4a45-9a77-8ea028d1285b?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "506b9ec6-6feb-4628-8cc4-5e72489c5472", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-request-id": "d85f88ad-b918-430c-9e89-2f7a63e22817", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T074612Z:506b9ec6-6feb-4628-8cc4-5e72489c5472", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "cbb68f99-e99b-4021-a23c-7d2140db4409", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "e4e51f93-1d46-463c-9191-e648c7ca5fb2", + "x-ms-routing-request-id": "WESTUS2:20221025T224403Z:cbb68f99-e99b-4021-a23c-7d2140db4409", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/81bc119f-7a0b-4f2f-ad8a-01d056c8b47c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/664ec9a0-6965-4a45-9a77-8ea028d1285b?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b17207d402191846badcc90d1f6aae54-b39cd189c0742a42-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "149ebf8beca462a9e09504d51116bd15", + "traceparent": "00-cc7f474729ddc34bac2c5e0a6c7cb0a1-ae653bc697e00740-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "f831c27ce40cd1f85302894c7c78dd5f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "149ebf8beca462a9e09504d51116bd15", + "client-request-id": "f831c27ce40cd1f85302894c7c78dd5f", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 07:46:13 GMT", + "Date": "Tue, 25 Oct 2022 22:44:04 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/81bc119f-7a0b-4f2f-ad8a-01d056c8b47c?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/664ec9a0-6965-4a45-9a77-8ea028d1285b?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b8807278-eefc-4acc-b979-aad078a73f3c", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "2f8af8db-f6e5-48d2-9d89-3f80ab17d8b6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T074614Z:b8807278-eefc-4acc-b979-aad078a73f3c", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "2cd33b1d-0698-478b-ac09-1b0709fdb31d", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "6423bf30-43dc-4727-950b-698c25371eb0", + "x-ms-routing-request-id": "WESTUS2:20221025T224404Z:2cd33b1d-0698-478b-ac09-1b0709fdb31d", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/81bc119f-7a0b-4f2f-ad8a-01d056c8b47c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/664ec9a0-6965-4a45-9a77-8ea028d1285b?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b17207d402191846badcc90d1f6aae54-e5bf528e7c6cba4e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e793be94378c56028bc1f0f2435b0923", + "traceparent": "00-cc7f474729ddc34bac2c5e0a6c7cb0a1-42272ab9e7e80e40-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "66602fcd51d0fb147249a7ec7c4e3c58", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "e793be94378c56028bc1f0f2435b0923", + "client-request-id": "66602fcd51d0fb147249a7ec7c4e3c58", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 07:46:15 GMT", + "Date": "Tue, 25 Oct 2022 22:44:05 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/81bc119f-7a0b-4f2f-ad8a-01d056c8b47c?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/664ec9a0-6965-4a45-9a77-8ea028d1285b?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "142d8784-276f-4ab6-8414-90b1f28de938", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-request-id": "d072cd14-7709-4b5a-9023-e6f32dd1c409", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T074616Z:142d8784-276f-4ab6-8414-90b1f28de938", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "9bbeda65-2cab-4dc6-8093-618b353c76a6", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "d007d7ea-1cef-4d2e-821b-b6e5140e1681", + "x-ms-routing-request-id": "WESTUS2:20221025T224405Z:9bbeda65-2cab-4dc6-8093-618b353c76a6", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/81bc119f-7a0b-4f2f-ad8a-01d056c8b47c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/664ec9a0-6965-4a45-9a77-8ea028d1285b?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b17207d402191846badcc90d1f6aae54-09986eaa142ae549-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f7dd685eb31287ebca30ff26cb7cec61", + "traceparent": "00-cc7f474729ddc34bac2c5e0a6c7cb0a1-4117a9c64135fb4e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "576eee7996799a7081ee2812ba3d9b10", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "f7dd685eb31287ebca30ff26cb7cec61", + "client-request-id": "576eee7996799a7081ee2812ba3d9b10", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 07:46:20 GMT", + "Date": "Tue, 25 Oct 2022 22:44:07 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/81bc119f-7a0b-4f2f-ad8a-01d056c8b47c?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/664ec9a0-6965-4a45-9a77-8ea028d1285b?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "69d5dd66-c0cf-4cd9-aac1-9ed50134678a", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-request-id": "086122c7-9446-42ca-b36a-88a1bb30526c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T074620Z:69d5dd66-c0cf-4cd9-aac1-9ed50134678a", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "eb885702-404e-4777-8887-1309a3b6aeb4", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "909957d5-07dc-41ac-8e0c-d5b59bad246d", + "x-ms-routing-request-id": "WESTUS2:20221025T224407Z:eb885702-404e-4777-8887-1309a3b6aeb4", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/81bc119f-7a0b-4f2f-ad8a-01d056c8b47c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/664ec9a0-6965-4a45-9a77-8ea028d1285b?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b17207d402191846badcc90d1f6aae54-1942130d10708048-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "603b7db11ac254abbd4889e3fbb71f84", + "traceparent": "00-cc7f474729ddc34bac2c5e0a6c7cb0a1-0b1368d2e89d2c4c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "0e69c2ed98622a30ae3685c23c0c5405", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "603b7db11ac254abbd4889e3fbb71f84", + "client-request-id": "0e69c2ed98622a30ae3685c23c0c5405", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 07:46:29 GMT", + "Date": "Tue, 25 Oct 2022 22:44:11 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/81bc119f-7a0b-4f2f-ad8a-01d056c8b47c?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/664ec9a0-6965-4a45-9a77-8ea028d1285b?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9316a88d-b4cb-4549-ad8e-bc9c70b73b3a", - "x-ms-ratelimit-remaining-subscription-reads": "11962", - "x-ms-request-id": "8ed0d388-721c-4d40-a63c-151ac866248c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T074629Z:9316a88d-b4cb-4549-ad8e-bc9c70b73b3a", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "78692f39-0c9b-45e1-ac3f-6a05cc050d0f", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "ba849e90-6734-402b-bd5d-b068bb37d73b", + "x-ms-routing-request-id": "WESTUS2:20221025T224411Z:78692f39-0c9b-45e1-ac3f-6a05cc050d0f", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/81bc119f-7a0b-4f2f-ad8a-01d056c8b47c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/664ec9a0-6965-4a45-9a77-8ea028d1285b?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b17207d402191846badcc90d1f6aae54-5cfb4e3414ea524b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a976e08bc539e002d30b1d5c38db8a0f", + "traceparent": "00-cc7f474729ddc34bac2c5e0a6c7cb0a1-a7ef69049da6e144-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "8dd330c6860936e5bec5e4e228024035", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "a976e08bc539e002d30b1d5c38db8a0f", + "client-request-id": "8dd330c6860936e5bec5e4e228024035", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 07:46:45 GMT", + "Date": "Tue, 25 Oct 2022 22:44:19 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/81bc119f-7a0b-4f2f-ad8a-01d056c8b47c?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/664ec9a0-6965-4a45-9a77-8ea028d1285b?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b5bd70ef-1781-4c19-a363-006fe0a7f6b6", - "x-ms-ratelimit-remaining-subscription-reads": "11961", - "x-ms-request-id": "8b460f75-0689-480d-aa81-1b0238a05fdc", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T074645Z:b5bd70ef-1781-4c19-a363-006fe0a7f6b6", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "2b806a41-4fcc-4c37-816f-109d1c1c6a39", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "fa99e7d4-5b21-44fb-976a-28097106e461", + "x-ms-routing-request-id": "WESTUS2:20221025T224420Z:2b806a41-4fcc-4c37-816f-109d1c1c6a39", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/81bc119f-7a0b-4f2f-ad8a-01d056c8b47c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/664ec9a0-6965-4a45-9a77-8ea028d1285b?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b17207d402191846badcc90d1f6aae54-e7819ea1e3b0fe42-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c5408ed4a81f4361bd893aca2a078b12", + "traceparent": "00-cc7f474729ddc34bac2c5e0a6c7cb0a1-7ec9cb492f97b74d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "baff96ae2de4e0f5be43a84310ae5e75", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "c5408ed4a81f4361bd893aca2a078b12", + "client-request-id": "baff96ae2de4e0f5be43a84310ae5e75", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 07:47:18 GMT", + "Date": "Tue, 25 Oct 2022 22:44:35 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/81bc119f-7a0b-4f2f-ad8a-01d056c8b47c?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/664ec9a0-6965-4a45-9a77-8ea028d1285b?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e7573963-1236-4efd-a2ef-d7fe61e6654b", - "x-ms-ratelimit-remaining-subscription-reads": "11960", - "x-ms-request-id": "9df85f73-bfc8-4b59-ac0e-9425425d5880", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T074718Z:e7573963-1236-4efd-a2ef-d7fe61e6654b", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "4545b025-0bda-487f-bc8d-c70bc244e9cf", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "765c1cfa-9bf4-45b2-8db9-404a6feeea22", + "x-ms-routing-request-id": "WESTUS2:20221025T224436Z:4545b025-0bda-487f-bc8d-c70bc244e9cf", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/81bc119f-7a0b-4f2f-ad8a-01d056c8b47c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/664ec9a0-6965-4a45-9a77-8ea028d1285b?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b17207d402191846badcc90d1f6aae54-c8b3308d927a514d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ea9b7a104305ec277a5a8db7fd4f1be1", + "traceparent": "00-cc7f474729ddc34bac2c5e0a6c7cb0a1-36066281a27dc244-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "8a4b23990d696607dc324f9db34d01ac", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "ea9b7a104305ec277a5a8db7fd4f1be1", + "client-request-id": "8a4b23990d696607dc324f9db34d01ac", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 07:47:49 GMT", + "Date": "Tue, 25 Oct 2022 22:45:08 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/81bc119f-7a0b-4f2f-ad8a-01d056c8b47c?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/664ec9a0-6965-4a45-9a77-8ea028d1285b?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a3fc5d31-d37e-4e37-8736-e5c3c2a4df90", - "x-ms-ratelimit-remaining-subscription-reads": "11959", - "x-ms-request-id": "133a23e1-ef63-491b-927a-1eed094662cf", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T074750Z:a3fc5d31-d37e-4e37-8736-e5c3c2a4df90", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "fd0521d9-e7ad-4f9a-b2f7-5b6a51f8899e", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "2964a518-38cc-4a57-b5a0-4dd382a735d1", + "x-ms-routing-request-id": "WESTUS2:20221025T224508Z:fd0521d9-e7ad-4f9a-b2f7-5b6a51f8899e", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/81bc119f-7a0b-4f2f-ad8a-01d056c8b47c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/664ec9a0-6965-4a45-9a77-8ea028d1285b?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b17207d402191846badcc90d1f6aae54-330720a4ec86044c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6c0f7abd5976e3657f32ebaf8a38b6cb", + "traceparent": "00-cc7f474729ddc34bac2c5e0a6c7cb0a1-d95a9f6a41783347-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "a51350f59a0d98203af2cfc5dda22510", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "6c0f7abd5976e3657f32ebaf8a38b6cb", + "client-request-id": "a51350f59a0d98203af2cfc5dda22510", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 07:48:22 GMT", + "Date": "Tue, 25 Oct 2022 22:45:39 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/81bc119f-7a0b-4f2f-ad8a-01d056c8b47c?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/664ec9a0-6965-4a45-9a77-8ea028d1285b?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8c0b469d-2781-41b3-b67c-dce0e9926d3a", - "x-ms-ratelimit-remaining-subscription-reads": "11958", - "x-ms-request-id": "1c9f43ab-62eb-412b-8666-02a974594aaf", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T074822Z:8c0b469d-2781-41b3-b67c-dce0e9926d3a", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "43f73ead-6a92-49d8-afef-20020c9983d1", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "bfbe9349-9141-4402-b7b2-9ab4861e237d", + "x-ms-routing-request-id": "WESTUS2:20221025T224540Z:43f73ead-6a92-49d8-afef-20020c9983d1", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/81bc119f-7a0b-4f2f-ad8a-01d056c8b47c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/664ec9a0-6965-4a45-9a77-8ea028d1285b?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b17207d402191846badcc90d1f6aae54-2c4ce71c93ca1149-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "be4b0a7fa040900966534bc41aaa466e", + "traceparent": "00-cc7f474729ddc34bac2c5e0a6c7cb0a1-6b0beb24a685754d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "05496f66b6b6a1cb8f98ddb2de582d70", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "be4b0a7fa040900966534bc41aaa466e", + "client-request-id": "05496f66b6b6a1cb8f98ddb2de582d70", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 07:48:55 GMT", + "Date": "Tue, 25 Oct 2022 22:46:12 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/81bc119f-7a0b-4f2f-ad8a-01d056c8b47c?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/664ec9a0-6965-4a45-9a77-8ea028d1285b?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0c21ff12-74e8-4aa3-aea3-43aa15ee8c37", - "x-ms-ratelimit-remaining-subscription-reads": "11957", - "x-ms-request-id": "9af473d6-25fe-4ed8-9bb8-4f529c5d44e2", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T074855Z:0c21ff12-74e8-4aa3-aea3-43aa15ee8c37", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "dcc72544-2944-4db1-97d8-ccf49c6d03f2", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "0359daf5-b883-4e65-964b-22bc95e6ea7f", + "x-ms-routing-request-id": "WESTUS2:20221025T224612Z:dcc72544-2944-4db1-97d8-ccf49c6d03f2", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/81bc119f-7a0b-4f2f-ad8a-01d056c8b47c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/664ec9a0-6965-4a45-9a77-8ea028d1285b?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b17207d402191846badcc90d1f6aae54-7e4735b704855748-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b00d596d1ef8b79b15b86bd257786242", + "traceparent": "00-cc7f474729ddc34bac2c5e0a6c7cb0a1-e61c1a6f13584743-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "bf4dfc41b99afe6803b24f763d41893a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "b00d596d1ef8b79b15b86bd257786242", + "client-request-id": "bf4dfc41b99afe6803b24f763d41893a", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 07:49:27 GMT", + "Date": "Tue, 25 Oct 2022 22:46:44 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/81bc119f-7a0b-4f2f-ad8a-01d056c8b47c?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/664ec9a0-6965-4a45-9a77-8ea028d1285b?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7b83e7e0-4381-4f8f-83f2-21343de68c83", - "x-ms-ratelimit-remaining-subscription-reads": "11956", - "x-ms-request-id": "a7af4f1d-44ae-44b4-bec3-246e7d38215a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T074927Z:7b83e7e0-4381-4f8f-83f2-21343de68c83", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "c6aa0ead-373a-4fa2-9344-3414efcdee3a", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "8d9b67ad-7de4-45d0-8652-cc5508aa363a", + "x-ms-routing-request-id": "WESTUS2:20221025T224644Z:c6aa0ead-373a-4fa2-9344-3414efcdee3a", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/81bc119f-7a0b-4f2f-ad8a-01d056c8b47c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/664ec9a0-6965-4a45-9a77-8ea028d1285b?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b17207d402191846badcc90d1f6aae54-30a07e89ca820144-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f237c2a45d031da1707e05230ea0c8d5", + "traceparent": "00-cc7f474729ddc34bac2c5e0a6c7cb0a1-799a411513a2db46-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "44363f0cfc043ff585721574bd6ebae1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "f237c2a45d031da1707e05230ea0c8d5", + "client-request-id": "44363f0cfc043ff585721574bd6ebae1", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 07:49:59 GMT", + "Date": "Tue, 25 Oct 2022 22:47:16 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/81bc119f-7a0b-4f2f-ad8a-01d056c8b47c?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/664ec9a0-6965-4a45-9a77-8ea028d1285b?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fef78ad6-174d-44bd-a47a-8b5641b7e5cb", - "x-ms-ratelimit-remaining-subscription-reads": "11955", - "x-ms-request-id": "e86c875d-1f4f-4bba-8615-25308e409a4f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T075000Z:fef78ad6-174d-44bd-a47a-8b5641b7e5cb", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "ceaf1366-ec23-43e4-b76c-4dddd7de38a1", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "191d4219-d02c-4c7e-b165-34492776c1ab", + "x-ms-routing-request-id": "WESTUS2:20221025T224716Z:ceaf1366-ec23-43e4-b76c-4dddd7de38a1", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/81bc119f-7a0b-4f2f-ad8a-01d056c8b47c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/664ec9a0-6965-4a45-9a77-8ea028d1285b?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b17207d402191846badcc90d1f6aae54-204231a3c67a6f41-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "30417dec052a60d26e93a988343639ee", + "traceparent": "00-cc7f474729ddc34bac2c5e0a6c7cb0a1-ba7f0abeeb337f4d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "e0835fc56654ad75064a01036654634d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "30417dec052a60d26e93a988343639ee", + "client-request-id": "e0835fc56654ad75064a01036654634d", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 07:50:32 GMT", + "Date": "Tue, 25 Oct 2022 22:47:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a70bdb9e-8474-426a-ae96-b19ab5b22139", - "x-ms-ratelimit-remaining-subscription-reads": "11954", - "x-ms-request-id": "89ba5bc4-eaff-4c8c-8a21-fb9c17a1dad7", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T075032Z:a70bdb9e-8474-426a-ae96-b19ab5b22139", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "636c8fc9-58b8-406a-9dc0-e472bc09e1ee", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "2d159f3a-5d0e-48da-a78c-956e1a905027", + "x-ms-routing-request-id": "WESTUS2:20221025T224748Z:636c8fc9-58b8-406a-9dc0-e472bc09e1ee", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8303/providers/Microsoft.Cache/redis/RedisBegin9611?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-336/providers/Microsoft.Cache/redis/RedisBegin3154?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d7916e9d3c186b49b63ff4adc47b7fd2-7b69a54370041448-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220825.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "572008f15372106ab8ef3f7a1878a974", + "traceparent": "00-9937a94a80984840b9eb0bedaf2ca65c-542aaa85416cac4c-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "9fa5a20fe822456b070e3a27a3f34195", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "219", + "Content-Length": "218", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 25 Aug 2022 07:50:32 GMT", + "Date": "Tue, 25 Oct 2022 22:47:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "559fe312-4f57-4a78-bb4e-2dae6b729588", + "x-ms-correlation-request-id": "58dbfa41-e36c-42c7-9a5d-8a11ae05455f", "x-ms-failure-cause": "gateway", - "x-ms-request-id": "559fe312-4f57-4a78-bb4e-2dae6b729588", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T075033Z:559fe312-4f57-4a78-bb4e-2dae6b729588" + "x-ms-request-id": "58dbfa41-e36c-42c7-9a5d-8a11ae05455f", + "x-ms-routing-request-id": "WESTUS2:20221025T224749Z:58dbfa41-e36c-42c7-9a5d-8a11ae05455f" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.Cache/Redis/RedisBegin9611\u0027 under resource group \u0027testRG-8303\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The Resource \u0027Microsoft.Cache/Redis/RedisBegin3154\u0027 under resource group \u0027testRG-336\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" } } } ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1441363194", + "RandomSeed": "523202597", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + "SUBSCRIPTION_ID": "3919658b-68ae-4509-8c17-6a2238340ae7" } } diff --git a/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/BeginCreateFunctionalTests/BeginCreateFunctionalTestAsync.json b/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/BeginCreateFunctionalTests/BeginCreateFunctionalTestAsync.json index 5bc72d7eb466..3cd3cafd35c7 100644 --- a/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/BeginCreateFunctionalTests/BeginCreateFunctionalTestAsync.json +++ b/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/BeginCreateFunctionalTests/BeginCreateFunctionalTestAsync.json @@ -1,52 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ab4ef5a5d622224f87b7017504bcfab7-637181e25854b347-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d91d5d2a3e03d8653417a62d2278f8d8", + "traceparent": "00-8c86d6d3b4b22845beb9b8f6017ebbd2-7c152aaddaf18f40-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "9cb5493de81e239cebbee48f10222ed3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "747", + "Content-Length": "405", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 25 Aug 2022 06:48:31 GMT", + "Date": "Tue, 25 Oct 2022 22:47:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b94b160e-27c8-4ff9-a00f-add225ee636b", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "b94b160e-27c8-4ff9-a00f-add225ee636b", - "x-ms-routing-request-id": "KOREASOUTH:20220825T064832Z:b94b160e-27c8-4ff9-a00f-add225ee636b" + "x-ms-correlation-request-id": "03435fdc-9f81-4c56-8e8b-1fe8a47a465e", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "03435fdc-9f81-4c56-8e8b-1fe8a47a465e", + "x-ms-routing-request-id": "WESTUS2:20221025T224750Z:03435fdc-9f81-4c56-8e8b-1fe8a47a465e" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7", "authorizationSource": "RoleBased", "managedByTenants": [], - "tags": { - "TagKey-9823": "TagValue-566", - "TagKey-3481": "TagValue-320", - "TagKey-4926": "TagValue-1187", - "TagKey-751": "TagValue-3921", - "TagKey-1866": "TagValue-8559", - "TagKey-3094": "TagValue-9190", - "TagKey-2449": "TagValue-9", - "TagKey-8379": "TagValue-164", - "TagKey-7470": "TagValue-2205", - "TagKey-4236": "TagValue-3698", - "TagKey-5316": "TagValue-2725" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "subscriptionId": "3919658b-68ae-4509-8c17-6a2238340ae7", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "displayName": "CacheTeam - Austin Tolani", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -56,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRG-6168?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/testRG-3867?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "43", "Content-Type": "application/json", - "traceparent": "00-76580b38b9d48047b0f3a89e31263022-7938176873e76e4e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d82b6730e681dbb1abc01a2107a32214", + "traceparent": "00-a46e8bc3adca5342838072ea9c78b9f3-dcda0bd65eadfe44-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "c58c440594535f2a1bcb75728eef1526", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -79,19 +66,19 @@ "Cache-Control": "no-cache", "Content-Length": "241", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 25 Aug 2022 06:48:36 GMT", + "Date": "Tue, 25 Oct 2022 22:47:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "120a45f6-cfe3-4c18-861a-b3a20e813124", + "x-ms-correlation-request-id": "474eaf60-9c4d-48c0-9a20-16ccecd55d6f", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "120a45f6-cfe3-4c18-861a-b3a20e813124", - "x-ms-routing-request-id": "KOREASOUTH:20220825T064837Z:120a45f6-cfe3-4c18-861a-b3a20e813124" + "x-ms-request-id": "474eaf60-9c4d-48c0-9a20-16ccecd55d6f", + "x-ms-routing-request-id": "WESTUS2:20221025T224752Z:474eaf60-9c4d-48c0-9a20-16ccecd55d6f" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-6168", - "name": "testRG-6168", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-3867", + "name": "testRG-3867", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "tags": { @@ -103,16 +90,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-6168/providers/Microsoft.Cache/redis/RedisBegin5086?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-3867/providers/Microsoft.Cache/redis/RedisBegin5150?api-version=2022-06-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "235", + "Content-Length": "240", "Content-Type": "application/json", - "traceparent": "00-0e2190a643dd4649bb247fd1ccda3380-a737a1086be3b349-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220825.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e331bbf52f5dbd6b27a336db8175f13e", + "traceparent": "00-60607b0d9412d14a8bb7d51981ad5bba-09c2ee8c62cbb34e-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "81a1066f205005410d680bee6697b474", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -122,7 +109,7 @@ "maxmemory-policy": "allkeys-lru", "maxmemory-reserved": 210 }, - "redisVersion": "6", + "redisVersion": "latest", "replicasPerMaster": 2, "minimumTlsVersion": "1.2", "sku": { @@ -134,33 +121,33 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "e331bbf52f5dbd6b27a336db8175f13e", - "Content-Length": "974", + "client-request-id": "81a1066f205005410d680bee6697b474", + "Content-Length": "971", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 25 Aug 2022 06:48:46 GMT", + "Date": "Tue, 25 Oct 2022 22:47:55 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-6168/providers/Microsoft.Cache/redis/RedisBegin5086?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-3867/providers/Microsoft.Cache/redis/RedisBegin5150?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "112e9e97-564b-4d65-b5b4-f739c105fe25", + "x-ms-correlation-request-id": "a0729c83-1591-4473-842a-ae4fefdc4249", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "80b23f47-1783-4b1d-a86f-3d81161072d0", - "x-ms-routing-request-id": "KOREASOUTH:20220825T064847Z:112e9e97-564b-4d65-b5b4-f739c105fe25", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "7569422e-8877-4497-98f5-1ed13f6b31b3", + "x-ms-routing-request-id": "WESTUS2:20221025T224755Z:a0729c83-1591-4473-842a-ae4fefdc4249", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-6168/providers/Microsoft.Cache/Redis/RedisBegin5086", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-3867/providers/Microsoft.Cache/Redis/RedisBegin5150", "location": "East US", - "name": "RedisBegin5086", + "name": "RedisBegin5150", "type": "Microsoft.Cache/Redis", "tags": {}, "properties": { "provisioningState": "Creating", - "redisVersion": "6.0.14", + "redisVersion": "6.0", "sku": { "name": "Premium", "family": "P", @@ -197,7 +184,7 @@ "primaryKey": "Sanitized", "secondaryKey": "Sanitized" }, - "hostName": "RedisBegin5086.redis.cache.windows.net", + "hostName": "RedisBegin5150.redis.cache.windows.net", "port": 6379, "sslPort": 6380, "replicasPerMaster": 2, @@ -207,38 +194,163 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-60607b0d9412d14a8bb7d51981ad5bba-8016f81d273f204c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "28b20868113224b44bc0452c1f70b533", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "28b20868113224b44bc0452c1f70b533", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Tue, 25 Oct 2022 22:47:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "bf5b634f-8fed-4a0f-a84a-e441f28b65e4", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "f28b87d6-7907-4d13-93d8-e25e662fb693", + "x-ms-routing-request-id": "WESTUS2:20221025T224755Z:bf5b634f-8fed-4a0f-a84a-e441f28b65e4", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3", + "name": "7569422e-8877-4497-98f5-1ed13f6b31b3", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-0e2190a643dd4649bb247fd1ccda3380-6e292adbf9213b45-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3d82fd1891a637d3c01a5a437b002a4a", + "Connection": "close", + "traceparent": "00-60607b0d9412d14a8bb7d51981ad5bba-346a85a6b6686d47-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "a1b0fdc1e46885685216444d031a54b0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "3d82fd1891a637d3c01a5a437b002a4a", + "client-request-id": "a1b0fdc1e46885685216444d031a54b0", + "Connection": "close", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 06:48:47 GMT", + "Date": "Tue, 25 Oct 2022 22:47:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d1db27eb-e09b-40c4-9966-8f5ad403edf9", + "x-ms-correlation-request-id": "aeaf6774-b924-4b5e-921e-be44340d8f46", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "7cb7183a-f0e4-4aa3-b855-9019244d55d4", + "x-ms-routing-request-id": "WESTUS2:20221025T224756Z:aeaf6774-b924-4b5e-921e-be44340d8f46", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3", + "name": "7569422e-8877-4497-98f5-1ed13f6b31b3", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-60607b0d9412d14a8bb7d51981ad5bba-6157dbcec7da2c40-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "5e853b998ce5cc429987f7e0a4876ccc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "5e853b998ce5cc429987f7e0a4876ccc", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Tue, 25 Oct 2022 22:47:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "40e83948-740a-4af7-8b11-56f6dba14887", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "2553df18-0075-44a0-a4d8-eb1b46a374fe", + "x-ms-routing-request-id": "WESTUS2:20221025T224758Z:40e83948-740a-4af7-8b11-56f6dba14887", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3", + "name": "7569422e-8877-4497-98f5-1ed13f6b31b3", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-60607b0d9412d14a8bb7d51981ad5bba-78456def6a14954f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "b364e94d2dac84669f2cd61ccd672130", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "b364e94d2dac84669f2cd61ccd672130", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Tue, 25 Oct 2022 22:47:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "20669105-ed3d-4226-a744-566e08e65917", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "318ac0c6-ae1e-4d82-a3fa-07c2852c4435", - "x-ms-routing-request-id": "KOREASOUTH:20220825T064847Z:d1db27eb-e09b-40c4-9966-8f5ad403edf9", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "00836192-6a36-42a5-b069-d1539e8c4ce0", + "x-ms-routing-request-id": "WESTUS2:20221025T224759Z:20669105-ed3d-4226-a744-566e08e65917", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0", - "name": "80b23f47-1783-4b1d-a86f-3d81161072d0", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3", + "name": "7569422e-8877-4497-98f5-1ed13f6b31b3", "status": "InProgress", "startTime": null, "endTime": null, @@ -248,38 +360,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-0e2190a643dd4649bb247fd1ccda3380-c1be90784e282442-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "45b9e329c6d24c2643c5e505b12006fa", + "traceparent": "00-60607b0d9412d14a8bb7d51981ad5bba-91c3230e84cff94b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "e393956c56eb354ebbe307e0ed88e1ca", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "45b9e329c6d24c2643c5e505b12006fa", + "client-request-id": "e393956c56eb354ebbe307e0ed88e1ca", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 06:48:48 GMT", + "Date": "Tue, 25 Oct 2022 22:48:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0424fb73-4cb2-4766-88f4-8634ff37df46", + "x-ms-correlation-request-id": "283a961b-7981-4e0f-8df8-25e3bf7ab5c0", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "48a23ac9-a411-40a6-99df-1d7a25a75bfa", - "x-ms-routing-request-id": "KOREASOUTH:20220825T064849Z:0424fb73-4cb2-4766-88f4-8634ff37df46", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "7be0c59a-0f83-4e39-b1e7-313f93752c84", + "x-ms-routing-request-id": "WESTUS2:20221025T224801Z:283a961b-7981-4e0f-8df8-25e3bf7ab5c0", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0", - "name": "80b23f47-1783-4b1d-a86f-3d81161072d0", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3", + "name": "7569422e-8877-4497-98f5-1ed13f6b31b3", "status": "InProgress", "startTime": null, "endTime": null, @@ -289,38 +401,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-0e2190a643dd4649bb247fd1ccda3380-93763bac5fb63648-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "83c2b22eb3f2bc978a188ee34e33f0fd", + "traceparent": "00-60607b0d9412d14a8bb7d51981ad5bba-f053ed4fac88f844-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "190078a9a0b56b03d501beb8b625ff32", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "83c2b22eb3f2bc978a188ee34e33f0fd", + "client-request-id": "190078a9a0b56b03d501beb8b625ff32", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 06:48:50 GMT", + "Date": "Tue, 25 Oct 2022 22:48:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8f22b817-62a5-41a8-bd34-928bb8ab9b08", + "x-ms-correlation-request-id": "c8d2b8e8-ba20-4a77-bbe1-3c473da355b4", "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "5db3fe91-0c7a-4542-869f-e7418ec18fe6", - "x-ms-routing-request-id": "KOREASOUTH:20220825T064850Z:8f22b817-62a5-41a8-bd34-928bb8ab9b08", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "5c592a85-e1cb-4594-8298-4d0383b5ddef", + "x-ms-routing-request-id": "WESTUS2:20221025T224805Z:c8d2b8e8-ba20-4a77-bbe1-3c473da355b4", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0", - "name": "80b23f47-1783-4b1d-a86f-3d81161072d0", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3", + "name": "7569422e-8877-4497-98f5-1ed13f6b31b3", "status": "InProgress", "startTime": null, "endTime": null, @@ -330,38 +442,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-0e2190a643dd4649bb247fd1ccda3380-b11cde2a86b3d04d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d421322c2e7452b1d736fae0abcd859f", + "traceparent": "00-60607b0d9412d14a8bb7d51981ad5bba-8d0ee3f01bd79641-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "0e73c66689f4f6e19a2ff7c926859717", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "d421322c2e7452b1d736fae0abcd859f", + "client-request-id": "0e73c66689f4f6e19a2ff7c926859717", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 06:48:51 GMT", + "Date": "Tue, 25 Oct 2022 22:48:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7679ef98-c602-45ec-b4c2-c17f07f07781", + "x-ms-correlation-request-id": "151f8608-87e4-4f9e-b6a5-c2d53db4643a", "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "e8bbd039-1211-47d8-a60e-ae92dc2508c0", - "x-ms-routing-request-id": "KOREASOUTH:20220825T064851Z:7679ef98-c602-45ec-b4c2-c17f07f07781", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "2b6872ab-c31c-41f0-b898-0496760b8e66", + "x-ms-routing-request-id": "WESTUS2:20221025T224813Z:151f8608-87e4-4f9e-b6a5-c2d53db4643a", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0", - "name": "80b23f47-1783-4b1d-a86f-3d81161072d0", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3", + "name": "7569422e-8877-4497-98f5-1ed13f6b31b3", "status": "InProgress", "startTime": null, "endTime": null, @@ -371,38 +483,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-0e2190a643dd4649bb247fd1ccda3380-d430c8219d39cf49-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c8146014a73d75584bfcbbba3842fd10", + "traceparent": "00-60607b0d9412d14a8bb7d51981ad5bba-3e69ff85b774f042-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "54720b4b0767cb7a91270de998967f96", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "c8146014a73d75584bfcbbba3842fd10", + "client-request-id": "54720b4b0767cb7a91270de998967f96", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 06:48:54 GMT", + "Date": "Tue, 25 Oct 2022 22:48:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c3104a7e-6339-4862-a468-b7678256ca1c", + "x-ms-correlation-request-id": "b4ac5b55-b017-4fb9-884d-22b3c8f60e11", "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "56f848e1-a35d-49ba-be79-b6a9899aeb63", - "x-ms-routing-request-id": "KOREASOUTH:20220825T064854Z:c3104a7e-6339-4862-a468-b7678256ca1c", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "2cc30660-ffbe-499e-8bc8-3d6663e479bf", + "x-ms-routing-request-id": "WESTUS2:20221025T224829Z:b4ac5b55-b017-4fb9-884d-22b3c8f60e11", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0", - "name": "80b23f47-1783-4b1d-a86f-3d81161072d0", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3", + "name": "7569422e-8877-4497-98f5-1ed13f6b31b3", "status": "InProgress", "startTime": null, "endTime": null, @@ -412,38 +524,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-0e2190a643dd4649bb247fd1ccda3380-0e71ef079238964a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "7ed9e8d532ff00850170abbcb9b711bc", + "traceparent": "00-60607b0d9412d14a8bb7d51981ad5bba-413f89c9767e1440-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "267ad5e3d21420d597097e85a93a454f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "7ed9e8d532ff00850170abbcb9b711bc", + "client-request-id": "267ad5e3d21420d597097e85a93a454f", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 06:48:58 GMT", + "Date": "Tue, 25 Oct 2022 22:49:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a68037e7-9ace-48d0-a0c6-81004107ad4b", + "x-ms-correlation-request-id": "5762d70e-b854-4af9-959e-662a980bcbf2", "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "f38ac7e3-3f97-4d74-b0ec-c3790a34bfe8", - "x-ms-routing-request-id": "KOREASOUTH:20220825T064858Z:a68037e7-9ace-48d0-a0c6-81004107ad4b", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "a81aa9f1-4ac7-4d70-9f39-1522e6879b1a", + "x-ms-routing-request-id": "WESTUS2:20221025T224902Z:5762d70e-b854-4af9-959e-662a980bcbf2", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0", - "name": "80b23f47-1783-4b1d-a86f-3d81161072d0", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3", + "name": "7569422e-8877-4497-98f5-1ed13f6b31b3", "status": "InProgress", "startTime": null, "endTime": null, @@ -453,38 +565,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-0e2190a643dd4649bb247fd1ccda3380-f2b1e475017ed94b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "eecfee92271f84bfdaab897773f61995", + "traceparent": "00-60607b0d9412d14a8bb7d51981ad5bba-4daf71781aaf8245-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "aa6da66aaab35fcb4ba87dcc7bf75e04", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "eecfee92271f84bfdaab897773f61995", + "client-request-id": "aa6da66aaab35fcb4ba87dcc7bf75e04", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 06:49:06 GMT", + "Date": "Tue, 25 Oct 2022 22:49:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "909c2850-ae0e-41a3-bf47-66ce0fbeee79", + "x-ms-correlation-request-id": "7f4e9711-bd1e-43ad-bc0e-e831602e3866", "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "5ab84dfb-374f-4c8c-a0ec-3f325d948802", - "x-ms-routing-request-id": "KOREASOUTH:20220825T064907Z:909c2850-ae0e-41a3-bf47-66ce0fbeee79", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "93794128-eaef-452e-80d1-f0ad919a03d1", + "x-ms-routing-request-id": "WESTUS2:20221025T224934Z:7f4e9711-bd1e-43ad-bc0e-e831602e3866", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0", - "name": "80b23f47-1783-4b1d-a86f-3d81161072d0", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3", + "name": "7569422e-8877-4497-98f5-1ed13f6b31b3", "status": "InProgress", "startTime": null, "endTime": null, @@ -494,38 +606,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-0e2190a643dd4649bb247fd1ccda3380-23dbeba1ac1b5a42-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c30aea3806f4e19fda14c6cdfc9bbc94", + "traceparent": "00-60607b0d9412d14a8bb7d51981ad5bba-3da981eea5751f41-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "50e561b0700b78033652bd5d88f52256", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "c30aea3806f4e19fda14c6cdfc9bbc94", + "client-request-id": "50e561b0700b78033652bd5d88f52256", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 06:49:23 GMT", + "Date": "Tue, 25 Oct 2022 22:50:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1c64480f-985e-422f-be1c-b222bb75ed9f", + "x-ms-correlation-request-id": "ad3f386d-06bf-4ed7-883f-dc5106e4f787", "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "b088b373-2ddd-4ef4-b514-7c76c09da3e1", - "x-ms-routing-request-id": "KOREASOUTH:20220825T064923Z:1c64480f-985e-422f-be1c-b222bb75ed9f", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "02ec5f2d-8d61-4e72-8bd4-858c54379046", + "x-ms-routing-request-id": "WESTUS2:20221025T225006Z:ad3f386d-06bf-4ed7-883f-dc5106e4f787", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0", - "name": "80b23f47-1783-4b1d-a86f-3d81161072d0", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3", + "name": "7569422e-8877-4497-98f5-1ed13f6b31b3", "status": "InProgress", "startTime": null, "endTime": null, @@ -535,38 +647,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-0e2190a643dd4649bb247fd1ccda3380-3dfc68055205be41-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4928feeb0f73adf02854a454a90e8c0b", + "traceparent": "00-60607b0d9412d14a8bb7d51981ad5bba-f63deffa0e201a4c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "f27fbde2d52938e20a1bdb6b5509a49f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "4928feeb0f73adf02854a454a90e8c0b", + "client-request-id": "f27fbde2d52938e20a1bdb6b5509a49f", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 06:49:55 GMT", + "Date": "Tue, 25 Oct 2022 22:50:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9ccadb43-571e-43b0-ba10-f46426663f9c", + "x-ms-correlation-request-id": "e4fcaa54-5f74-4338-83fd-b8e791d39a28", "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "727e4734-4b15-43ac-ad52-665afd97972a", - "x-ms-routing-request-id": "KOREASOUTH:20220825T064955Z:9ccadb43-571e-43b0-ba10-f46426663f9c", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "b7b3acda-1f4a-49d7-bc0e-38154cc1684f", + "x-ms-routing-request-id": "WESTUS2:20221025T225038Z:e4fcaa54-5f74-4338-83fd-b8e791d39a28", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0", - "name": "80b23f47-1783-4b1d-a86f-3d81161072d0", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3", + "name": "7569422e-8877-4497-98f5-1ed13f6b31b3", "status": "InProgress", "startTime": null, "endTime": null, @@ -576,38 +688,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-0e2190a643dd4649bb247fd1ccda3380-f15d653e0facc241-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "cf8416564dac8bc84fed140b61f2883e", + "traceparent": "00-60607b0d9412d14a8bb7d51981ad5bba-8955f14bdda49943-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "47d57aabf454f944a2f47360ed6dd656", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "cf8416564dac8bc84fed140b61f2883e", + "client-request-id": "47d57aabf454f944a2f47360ed6dd656", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 06:50:27 GMT", + "Date": "Tue, 25 Oct 2022 22:51:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7447896f-5aa5-4ba7-b7dd-e1cb3c82fdfc", + "x-ms-correlation-request-id": "1c78ce01-2970-4e75-a91d-4914ac19f8d1", "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "09edf13c-3a73-4375-991f-9f41f84192da", - "x-ms-routing-request-id": "KOREASOUTH:20220825T065028Z:7447896f-5aa5-4ba7-b7dd-e1cb3c82fdfc", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "e26cbbfa-34da-41e2-bcd8-17b087531f9f", + "x-ms-routing-request-id": "WESTUS2:20221025T225110Z:1c78ce01-2970-4e75-a91d-4914ac19f8d1", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0", - "name": "80b23f47-1783-4b1d-a86f-3d81161072d0", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3", + "name": "7569422e-8877-4497-98f5-1ed13f6b31b3", "status": "InProgress", "startTime": null, "endTime": null, @@ -617,38 +729,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-0e2190a643dd4649bb247fd1ccda3380-821a481b9febb048-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "758bf4eed0ce2922f95d9a9f624b38cb", + "traceparent": "00-60607b0d9412d14a8bb7d51981ad5bba-529d8ae15986c442-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "bee926856c77dbdb7ead46f09597232c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "758bf4eed0ce2922f95d9a9f624b38cb", + "client-request-id": "bee926856c77dbdb7ead46f09597232c", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 06:51:00 GMT", + "Date": "Tue, 25 Oct 2022 22:51:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8d58b43d-f014-4e02-92d3-f5c54862bc8e", + "x-ms-correlation-request-id": "67091e60-4f5c-41a6-b3d6-5e9be0853034", "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "6bacc00a-e537-4187-a737-7a60ba0f7f34", - "x-ms-routing-request-id": "KOREASOUTH:20220825T065100Z:8d58b43d-f014-4e02-92d3-f5c54862bc8e", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "d80bdd3c-e412-4493-b101-70bdf8e08f5f", + "x-ms-routing-request-id": "WESTUS2:20221025T225142Z:67091e60-4f5c-41a6-b3d6-5e9be0853034", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0", - "name": "80b23f47-1783-4b1d-a86f-3d81161072d0", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3", + "name": "7569422e-8877-4497-98f5-1ed13f6b31b3", "status": "InProgress", "startTime": null, "endTime": null, @@ -658,38 +770,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-0e2190a643dd4649bb247fd1ccda3380-9183a3009ec2754a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e676bb87ed179de7359cfa85fae54c36", + "traceparent": "00-60607b0d9412d14a8bb7d51981ad5bba-8fd08b64c4465748-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "0eb21eaeda1fee0279854f3461824b9d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "e676bb87ed179de7359cfa85fae54c36", + "client-request-id": "0eb21eaeda1fee0279854f3461824b9d", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 06:51:33 GMT", + "Date": "Tue, 25 Oct 2022 22:52:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "53ee2c44-99d5-4a61-973b-2d3122957328", + "x-ms-correlation-request-id": "f1a9e28a-f659-46e6-b2fa-2c5fcc5e129a", "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "e90efb99-8312-4ca8-a4df-7125a8b05cfc", - "x-ms-routing-request-id": "KOREASOUTH:20220825T065133Z:53ee2c44-99d5-4a61-973b-2d3122957328", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "849ba55e-ea70-403a-8414-1ac64357fa3a", + "x-ms-routing-request-id": "WESTUS2:20221025T225215Z:f1a9e28a-f659-46e6-b2fa-2c5fcc5e129a", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0", - "name": "80b23f47-1783-4b1d-a86f-3d81161072d0", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3", + "name": "7569422e-8877-4497-98f5-1ed13f6b31b3", "status": "InProgress", "startTime": null, "endTime": null, @@ -699,38 +811,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-0e2190a643dd4649bb247fd1ccda3380-fb30ae0a4cd18b4f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b46565cb1782853cf45bd54fb3282903", + "traceparent": "00-60607b0d9412d14a8bb7d51981ad5bba-33899bb3b4e91e46-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "2ee68444e51f3f289ff9c8a7ae54640a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "b46565cb1782853cf45bd54fb3282903", + "client-request-id": "2ee68444e51f3f289ff9c8a7ae54640a", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 06:52:04 GMT", + "Date": "Tue, 25 Oct 2022 22:52:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cd8d5310-82c3-4632-a4f4-35692b4a11d5", + "x-ms-correlation-request-id": "9abdd663-85ba-458c-ac31-26bde08769ec", "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "dfed7466-833d-44ee-b1d3-6fc455bd2a24", - "x-ms-routing-request-id": "KOREASOUTH:20220825T065205Z:cd8d5310-82c3-4632-a4f4-35692b4a11d5", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "5b40428f-ae7f-4c28-9ae5-501adad39ede", + "x-ms-routing-request-id": "WESTUS2:20221025T225247Z:9abdd663-85ba-458c-ac31-26bde08769ec", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0", - "name": "80b23f47-1783-4b1d-a86f-3d81161072d0", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3", + "name": "7569422e-8877-4497-98f5-1ed13f6b31b3", "status": "InProgress", "startTime": null, "endTime": null, @@ -740,38 +852,40 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-0e2190a643dd4649bb247fd1ccda3380-d6c51c4122d82341-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a58348b5a27b01270dee3f31d69c2e14", + "Connection": "close", + "traceparent": "00-60607b0d9412d14a8bb7d51981ad5bba-47d9629225b8404a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "cfb247d1c8baaa3624fb45f11ca67afc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "a58348b5a27b01270dee3f31d69c2e14", + "client-request-id": "cfb247d1c8baaa3624fb45f11ca67afc", + "Connection": "close", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 06:52:37 GMT", + "Date": "Tue, 25 Oct 2022 22:53:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b165bf9d-4a80-4d41-a4d7-96e8188008d9", + "x-ms-correlation-request-id": "4c3e9cad-615f-4e88-944d-38082e38745a", "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "6adce4a6-1e59-4a4e-8020-94d47dd52459", - "x-ms-routing-request-id": "KOREASOUTH:20220825T065237Z:b165bf9d-4a80-4d41-a4d7-96e8188008d9", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "89422559-92f3-4da5-a355-4355d4df26f1", + "x-ms-routing-request-id": "WESTUS2:20221025T225319Z:4c3e9cad-615f-4e88-944d-38082e38745a", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0", - "name": "80b23f47-1783-4b1d-a86f-3d81161072d0", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3", + "name": "7569422e-8877-4497-98f5-1ed13f6b31b3", "status": "InProgress", "startTime": null, "endTime": null, @@ -781,38 +895,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-0e2190a643dd4649bb247fd1ccda3380-acf62deefe297441-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "fdd4641083e56f497ef0f2bc1798ea0d", + "traceparent": "00-60607b0d9412d14a8bb7d51981ad5bba-0ab046e86e073e4b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "10aba961f4b1c80df5736f26125b4024", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "fdd4641083e56f497ef0f2bc1798ea0d", + "client-request-id": "10aba961f4b1c80df5736f26125b4024", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 06:53:10 GMT", + "Date": "Tue, 25 Oct 2022 22:53:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "026e3066-9c5c-4a14-ab63-0baabc084e10", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "d9ff3e73-c604-4e4e-baf9-6321ad599bc2", - "x-ms-routing-request-id": "KOREASOUTH:20220825T065310Z:026e3066-9c5c-4a14-ab63-0baabc084e10", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "87d0b954-1824-4959-9c53-dceabe9fdf30", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "240cf188-4e5f-4e2c-bab9-c1995830ad9d", + "x-ms-routing-request-id": "WESTUS2:20221025T225351Z:87d0b954-1824-4959-9c53-dceabe9fdf30", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0", - "name": "80b23f47-1783-4b1d-a86f-3d81161072d0", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3", + "name": "7569422e-8877-4497-98f5-1ed13f6b31b3", "status": "InProgress", "startTime": null, "endTime": null, @@ -822,38 +936,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-0e2190a643dd4649bb247fd1ccda3380-d6bc7c6d83cc5a44-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b2cff673a76129ba3d64a794d80baf57", + "traceparent": "00-60607b0d9412d14a8bb7d51981ad5bba-d222f6e33864b948-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "196244217ccf7ce24d3b0a24a03622f8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "b2cff673a76129ba3d64a794d80baf57", + "client-request-id": "196244217ccf7ce24d3b0a24a03622f8", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 06:53:43 GMT", + "Date": "Tue, 25 Oct 2022 22:54:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "adc5d705-2ce1-4687-9bd1-c6758ffe6f51", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "36d501e1-e80a-422d-b574-9c4576b9f2c6", - "x-ms-routing-request-id": "KOREASOUTH:20220825T065343Z:adc5d705-2ce1-4687-9bd1-c6758ffe6f51", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "03e792ce-5123-4ef6-9579-1e0b54e6b208", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "59e3e71f-5f49-416d-9b58-557a51058045", + "x-ms-routing-request-id": "WESTUS2:20221025T225424Z:03e792ce-5123-4ef6-9579-1e0b54e6b208", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0", - "name": "80b23f47-1783-4b1d-a86f-3d81161072d0", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3", + "name": "7569422e-8877-4497-98f5-1ed13f6b31b3", "status": "InProgress", "startTime": null, "endTime": null, @@ -863,38 +977,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-0e2190a643dd4649bb247fd1ccda3380-19ed48f2327de043-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4f3ec12c2c54311eff14268ab06aea74", + "traceparent": "00-60607b0d9412d14a8bb7d51981ad5bba-42596374cb36e44e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "0445cc7f53a8dc593ae9d947581098c8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "4f3ec12c2c54311eff14268ab06aea74", + "client-request-id": "0445cc7f53a8dc593ae9d947581098c8", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 06:54:15 GMT", + "Date": "Tue, 25 Oct 2022 22:54:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3c528973-6308-480c-8cfe-4b28220e1c3f", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "a5fcc73c-db09-49a9-8792-d0d12018fdb2", - "x-ms-routing-request-id": "KOREASOUTH:20220825T065415Z:3c528973-6308-480c-8cfe-4b28220e1c3f", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "5389b7af-f0bb-4494-a46a-544732660546", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "708b87da-9c1d-4557-ba1f-df18ee300d45", + "x-ms-routing-request-id": "WESTUS2:20221025T225456Z:5389b7af-f0bb-4494-a46a-544732660546", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0", - "name": "80b23f47-1783-4b1d-a86f-3d81161072d0", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3", + "name": "7569422e-8877-4497-98f5-1ed13f6b31b3", "status": "InProgress", "startTime": null, "endTime": null, @@ -904,38 +1018,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-0e2190a643dd4649bb247fd1ccda3380-06f225c06d39c54a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "dfbd32047ccc69b2a9abbf80dcb49673", + "traceparent": "00-60607b0d9412d14a8bb7d51981ad5bba-e50d5725a412514a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "d8d020ba6044e52cc62ec276eae827bf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "dfbd32047ccc69b2a9abbf80dcb49673", + "client-request-id": "d8d020ba6044e52cc62ec276eae827bf", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 06:54:48 GMT", + "Date": "Tue, 25 Oct 2022 22:55:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d9581248-8649-481d-9219-2bb504383fda", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "c27a28d0-0849-4225-9307-a9a10ec0f57f", - "x-ms-routing-request-id": "KOREASOUTH:20220825T065448Z:d9581248-8649-481d-9219-2bb504383fda", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "93a2fe38-af87-4aae-a89e-ba9d0f5a44bf", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "42de8661-ef82-4238-80f1-f2304a7f209d", + "x-ms-routing-request-id": "WESTUS2:20221025T225528Z:93a2fe38-af87-4aae-a89e-ba9d0f5a44bf", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0", - "name": "80b23f47-1783-4b1d-a86f-3d81161072d0", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3", + "name": "7569422e-8877-4497-98f5-1ed13f6b31b3", "status": "InProgress", "startTime": null, "endTime": null, @@ -945,38 +1059,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-0e2190a643dd4649bb247fd1ccda3380-912a51fced450240-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "558f9a419b5947b8d79eb24c802f78d2", + "traceparent": "00-60607b0d9412d14a8bb7d51981ad5bba-60eb779b0048284d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "45a776503b16cd7ceb86dfe6a39b233d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "558f9a419b5947b8d79eb24c802f78d2", + "client-request-id": "45a776503b16cd7ceb86dfe6a39b233d", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 06:55:24 GMT", + "Date": "Tue, 25 Oct 2022 22:56:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d55ac9de-bee6-4902-9691-306f936cbc06", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "ba6d4797-8a2c-465f-a217-c11dfbffbf69", - "x-ms-routing-request-id": "KOREASOUTH:20220825T065525Z:d55ac9de-bee6-4902-9691-306f936cbc06", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "43fcfff7-4e75-4c04-8d62-e0adfed11466", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "ed8d1e17-9606-4e6b-abd3-e8d062ab6b21", + "x-ms-routing-request-id": "WESTUS2:20221025T225600Z:43fcfff7-4e75-4c04-8d62-e0adfed11466", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0", - "name": "80b23f47-1783-4b1d-a86f-3d81161072d0", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3", + "name": "7569422e-8877-4497-98f5-1ed13f6b31b3", "status": "InProgress", "startTime": null, "endTime": null, @@ -986,38 +1100,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-0e2190a643dd4649bb247fd1ccda3380-5a521b66d2f19d44-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a690327acf4db08a0ed5a5a96c9e544a", + "traceparent": "00-60607b0d9412d14a8bb7d51981ad5bba-181d39e4cd9f024b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "806941a249651eb49f5f3e7991e2f251", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "a690327acf4db08a0ed5a5a96c9e544a", + "client-request-id": "806941a249651eb49f5f3e7991e2f251", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 06:55:58 GMT", + "Date": "Tue, 25 Oct 2022 22:56:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bf9d8643-a3ac-41f9-aacf-e7e04314968c", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "00f6350b-3cad-4cae-bd73-6ea19e3c0a8f", - "x-ms-routing-request-id": "KOREASOUTH:20220825T065558Z:bf9d8643-a3ac-41f9-aacf-e7e04314968c", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "e8355e20-f1e3-4c59-97e1-fc8b1d6d8001", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "ad5ccd3a-375f-4354-bfc0-31dc36458bce", + "x-ms-routing-request-id": "WESTUS2:20221025T225632Z:e8355e20-f1e3-4c59-97e1-fc8b1d6d8001", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0", - "name": "80b23f47-1783-4b1d-a86f-3d81161072d0", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3", + "name": "7569422e-8877-4497-98f5-1ed13f6b31b3", "status": "InProgress", "startTime": null, "endTime": null, @@ -1027,38 +1141,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-0e2190a643dd4649bb247fd1ccda3380-0dece577df609549-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1549b37d94db691b7976082ec966e979", + "traceparent": "00-60607b0d9412d14a8bb7d51981ad5bba-a95349aeacaab944-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "e1f619c152697fb2a303edbe8046422b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "1549b37d94db691b7976082ec966e979", + "client-request-id": "e1f619c152697fb2a303edbe8046422b", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 06:56:30 GMT", + "Date": "Tue, 25 Oct 2022 22:57:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e6d53b85-a582-4ed3-a57d-e353d2339113", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "2268f5ff-99b2-492f-bf68-92888d2dc004", - "x-ms-routing-request-id": "KOREASOUTH:20220825T065630Z:e6d53b85-a582-4ed3-a57d-e353d2339113", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "7032ddde-3e87-402b-b75a-463525175dc9", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "fccfd229-5720-41c9-b027-6319318a8c5d", + "x-ms-routing-request-id": "WESTUS2:20221025T225704Z:7032ddde-3e87-402b-b75a-463525175dc9", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0", - "name": "80b23f47-1783-4b1d-a86f-3d81161072d0", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3", + "name": "7569422e-8877-4497-98f5-1ed13f6b31b3", "status": "InProgress", "startTime": null, "endTime": null, @@ -1068,38 +1182,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-0e2190a643dd4649bb247fd1ccda3380-a783450cf8cfd140-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "aa06ec32f024712510de4684f50fda39", + "traceparent": "00-60607b0d9412d14a8bb7d51981ad5bba-b3fd537189acba4f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "a9d4850ba67f0659c288a6b6fd023b08", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "aa06ec32f024712510de4684f50fda39", + "client-request-id": "a9d4850ba67f0659c288a6b6fd023b08", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 06:57:02 GMT", + "Date": "Tue, 25 Oct 2022 22:57:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "46967274-c05b-4bee-8265-9c8ad551a83e", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "6b805102-f409-40d6-a900-9a3c086ace55", - "x-ms-routing-request-id": "KOREASOUTH:20220825T065702Z:46967274-c05b-4bee-8265-9c8ad551a83e", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "061dd1ea-ae7b-4f42-8cef-48adb5659202", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "d03718dc-d3e6-43c7-93f1-a85854c65207", + "x-ms-routing-request-id": "WESTUS2:20221025T225737Z:061dd1ea-ae7b-4f42-8cef-48adb5659202", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0", - "name": "80b23f47-1783-4b1d-a86f-3d81161072d0", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3", + "name": "7569422e-8877-4497-98f5-1ed13f6b31b3", "status": "InProgress", "startTime": null, "endTime": null, @@ -1109,38 +1223,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-0e2190a643dd4649bb247fd1ccda3380-09ee83d738c1a74b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "cccf674963e6e5f716272dd7c75be7a8", + "traceparent": "00-60607b0d9412d14a8bb7d51981ad5bba-a43ce42e504a0f4a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "89248e9341a44fd48ee9dc625cf69d59", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "cccf674963e6e5f716272dd7c75be7a8", + "client-request-id": "89248e9341a44fd48ee9dc625cf69d59", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 06:57:34 GMT", + "Date": "Tue, 25 Oct 2022 22:58:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aec6d73d-a014-47a1-94ad-466629b070ee", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "f7f673bd-99ee-4f37-835b-de124ece5ed7", - "x-ms-routing-request-id": "KOREASOUTH:20220825T065735Z:aec6d73d-a014-47a1-94ad-466629b070ee", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "33c85d75-a310-45ff-9a34-549544836f81", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "b4e941e6-fedc-4c56-b9b7-af438c249739", + "x-ms-routing-request-id": "WESTUS2:20221025T225809Z:33c85d75-a310-45ff-9a34-549544836f81", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0", - "name": "80b23f47-1783-4b1d-a86f-3d81161072d0", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3", + "name": "7569422e-8877-4497-98f5-1ed13f6b31b3", "status": "InProgress", "startTime": null, "endTime": null, @@ -1150,38 +1264,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-0e2190a643dd4649bb247fd1ccda3380-8250f0811fec184c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "80762ceca9988c268ed805fc4d977369", + "traceparent": "00-60607b0d9412d14a8bb7d51981ad5bba-c1633f613281664d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "0c6e121d480e1ad1c0ef1fe1acfc82a1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "80762ceca9988c268ed805fc4d977369", + "client-request-id": "0c6e121d480e1ad1c0ef1fe1acfc82a1", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 06:58:07 GMT", + "Date": "Tue, 25 Oct 2022 22:58:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5fe67b16-d6fa-486b-b927-3c0caf4394f3", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "6fb61eef-90f6-443f-b964-13fe91ee59eb", - "x-ms-routing-request-id": "KOREASOUTH:20220825T065807Z:5fe67b16-d6fa-486b-b927-3c0caf4394f3", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "de9760a5-08d7-43ea-b120-022b51684694", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "16b5b2a3-89b5-49d2-9659-75957383c86b", + "x-ms-routing-request-id": "WESTUS2:20221025T225841Z:de9760a5-08d7-43ea-b120-022b51684694", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0", - "name": "80b23f47-1783-4b1d-a86f-3d81161072d0", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3", + "name": "7569422e-8877-4497-98f5-1ed13f6b31b3", "status": "InProgress", "startTime": null, "endTime": null, @@ -1191,38 +1305,40 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-0e2190a643dd4649bb247fd1ccda3380-770694d25fb5a245-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "61e5cf9b1c96cf93f42094fdc34daab4", + "Connection": "close", + "traceparent": "00-60607b0d9412d14a8bb7d51981ad5bba-131246e6777c674e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "f22ae4c7b921c986b0841a95caf6aacc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "61e5cf9b1c96cf93f42094fdc34daab4", + "client-request-id": "f22ae4c7b921c986b0841a95caf6aacc", + "Connection": "close", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 06:58:39 GMT", + "Date": "Tue, 25 Oct 2022 22:59:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cd2ff86b-5d73-4dd3-833d-efcb232fa00b", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "429c1862-ed31-41d7-8e2d-a89f664b1bce", - "x-ms-routing-request-id": "KOREASOUTH:20220825T065840Z:cd2ff86b-5d73-4dd3-833d-efcb232fa00b", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "f3f408cb-7019-4b61-bb8e-256f79672ae5", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "53ca4a83-04f6-4a24-ab25-837f491699e3", + "x-ms-routing-request-id": "WESTUS2:20221025T225913Z:f3f408cb-7019-4b61-bb8e-256f79672ae5", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0", - "name": "80b23f47-1783-4b1d-a86f-3d81161072d0", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3", + "name": "7569422e-8877-4497-98f5-1ed13f6b31b3", "status": "InProgress", "startTime": null, "endTime": null, @@ -1232,38 +1348,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-0e2190a643dd4649bb247fd1ccda3380-389958c6ea90ad46-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c8989ef75a989fa141423e0d5dfb987f", + "traceparent": "00-60607b0d9412d14a8bb7d51981ad5bba-dc204db0bf671644-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "ea984dea2f934afabc09c8b522f3a391", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "c8989ef75a989fa141423e0d5dfb987f", + "client-request-id": "ea984dea2f934afabc09c8b522f3a391", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 06:59:13 GMT", + "Date": "Tue, 25 Oct 2022 22:59:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "10bae92e-467f-4268-9583-0920a2a1adae", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "c3f8e2b9-6c94-4bcc-8a13-9320f9d4afdd", - "x-ms-routing-request-id": "KOREASOUTH:20220825T065913Z:10bae92e-467f-4268-9583-0920a2a1adae", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "8614da4f-dc04-47a3-ba1c-181110b245a4", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "0563620b-7d44-417c-bb56-351c47ff4ad9", + "x-ms-routing-request-id": "WESTUS2:20221025T225946Z:8614da4f-dc04-47a3-ba1c-181110b245a4", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0", - "name": "80b23f47-1783-4b1d-a86f-3d81161072d0", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3", + "name": "7569422e-8877-4497-98f5-1ed13f6b31b3", "status": "InProgress", "startTime": null, "endTime": null, @@ -1273,38 +1389,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-0e2190a643dd4649bb247fd1ccda3380-909487206705a742-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f73cc3b38576cf1199a78b771528c940", + "traceparent": "00-60607b0d9412d14a8bb7d51981ad5bba-d9dccc0d16eef441-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "789b3b67abcc64378ca55b892d3c50c9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "f73cc3b38576cf1199a78b771528c940", + "client-request-id": "789b3b67abcc64378ca55b892d3c50c9", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 06:59:45 GMT", + "Date": "Tue, 25 Oct 2022 23:00:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f2f0ab8b-3d50-40f3-81d1-dab38dd4ebe3", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "0441339d-3dbe-44cb-b16f-0512ee1b5b9f", - "x-ms-routing-request-id": "KOREASOUTH:20220825T065945Z:f2f0ab8b-3d50-40f3-81d1-dab38dd4ebe3", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "29ede147-3182-461b-a462-56299ac7e468", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "2f38ac3e-44d6-4b22-b5a4-447cf717ed5a", + "x-ms-routing-request-id": "WESTUS2:20221025T230018Z:29ede147-3182-461b-a462-56299ac7e468", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0", - "name": "80b23f47-1783-4b1d-a86f-3d81161072d0", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3", + "name": "7569422e-8877-4497-98f5-1ed13f6b31b3", "status": "InProgress", "startTime": null, "endTime": null, @@ -1314,38 +1430,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-0e2190a643dd4649bb247fd1ccda3380-af56d8c87d0f3b47-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "af04502eabff41d02e451f54de8571f9", + "traceparent": "00-60607b0d9412d14a8bb7d51981ad5bba-71eb33ff276ca644-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "5ff652459864970ee9df3518f0d1a6bd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "af04502eabff41d02e451f54de8571f9", + "client-request-id": "5ff652459864970ee9df3518f0d1a6bd", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 07:00:17 GMT", + "Date": "Tue, 25 Oct 2022 23:00:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9b3216ff-b9bd-4b0c-a50e-c20ab0bdd6ed", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "8c28f838-b480-434f-928e-9ac1c793188a", - "x-ms-routing-request-id": "KOREASOUTH:20220825T070018Z:9b3216ff-b9bd-4b0c-a50e-c20ab0bdd6ed", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "837faf30-b57f-4163-958a-5895bbef59a1", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "86707385-7160-423f-ac3a-49e7153c7f13", + "x-ms-routing-request-id": "WESTUS2:20221025T230050Z:837faf30-b57f-4163-958a-5895bbef59a1", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0", - "name": "80b23f47-1783-4b1d-a86f-3d81161072d0", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3", + "name": "7569422e-8877-4497-98f5-1ed13f6b31b3", "status": "InProgress", "startTime": null, "endTime": null, @@ -1355,38 +1471,202 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-0e2190a643dd4649bb247fd1ccda3380-422219a7301f8042-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "004a1487b211713e8cc82ff1ce298a19", + "traceparent": "00-60607b0d9412d14a8bb7d51981ad5bba-40e59b25a1e2ac43-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "8e2d89e1315b3e0016345dedd4701d7f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "004a1487b211713e8cc82ff1ce298a19", + "client-request-id": "8e2d89e1315b3e0016345dedd4701d7f", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Tue, 25 Oct 2022 23:01:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "025a50a6-1e8b-4e0c-ac5f-c2e6458c7574", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "eb3e4981-7a60-4d1d-b78b-fc82e1abac40", + "x-ms-routing-request-id": "WESTUS2:20221025T230123Z:025a50a6-1e8b-4e0c-ac5f-c2e6458c7574", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3", + "name": "7569422e-8877-4497-98f5-1ed13f6b31b3", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-60607b0d9412d14a8bb7d51981ad5bba-5b9c209460634e4a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "cf6ffeb844fccf2d2c038eec751e73ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "cf6ffeb844fccf2d2c038eec751e73ba", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Tue, 25 Oct 2022 23:01:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "6d89bb7c-8ba9-49f3-adfe-2d3d6540c194", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "9b5b717c-34f4-48d8-8afe-64ff198ed4e2", + "x-ms-routing-request-id": "WESTUS2:20221025T230155Z:6d89bb7c-8ba9-49f3-adfe-2d3d6540c194", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3", + "name": "7569422e-8877-4497-98f5-1ed13f6b31b3", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-60607b0d9412d14a8bb7d51981ad5bba-0e04767767821a4e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "a4a89dfec10e146e52b7482f3a20c378", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "a4a89dfec10e146e52b7482f3a20c378", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Tue, 25 Oct 2022 23:02:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d4edbb66-acf2-4a66-8a2e-46efda4f5462", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "a2481fdb-a257-426a-aad9-9678fa8f27d6", + "x-ms-routing-request-id": "WESTUS2:20221025T230227Z:d4edbb66-acf2-4a66-8a2e-46efda4f5462", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3", + "name": "7569422e-8877-4497-98f5-1ed13f6b31b3", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-60607b0d9412d14a8bb7d51981ad5bba-27a728def9d15f47-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "f15fb5c2d6629dc15b5d6257a213c9f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "f15fb5c2d6629dc15b5d6257a213c9f7", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Tue, 25 Oct 2022 23:02:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7e1766b8-bf5e-4e2d-b828-312d5099fc11", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "32016486-85bf-49e3-90ec-3e7d2442d215", + "x-ms-routing-request-id": "WESTUS2:20221025T230259Z:7e1766b8-bf5e-4e2d-b828-312d5099fc11", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3", + "name": "7569422e-8877-4497-98f5-1ed13f6b31b3", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-60607b0d9412d14a8bb7d51981ad5bba-362cfffc7fa96048-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "36efa3c078c8f670905b7d45fbfd950c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "36efa3c078c8f670905b7d45fbfd950c", "Content-Length": "352", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 07:00:50 GMT", + "Date": "Tue, 25 Oct 2022 23:03:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "711e4173-a070-489e-88bf-b8f96bf40c2b", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "ca8b5b5b-4445-4e15-8ea0-77fe0b672aed", - "x-ms-routing-request-id": "KOREASOUTH:20220825T070050Z:711e4173-a070-489e-88bf-b8f96bf40c2b", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "2fe0791c-6721-47ae-bb4e-9bc56c0b972c", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "6eb1da93-914e-4fe9-bb5f-05a285465eb0", + "x-ms-routing-request-id": "WESTUS2:20221025T230331Z:2fe0791c-6721-47ae-bb4e-9bc56c0b972c", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/80b23f47-1783-4b1d-a86f-3d81161072d0", - "name": "80b23f47-1783-4b1d-a86f-3d81161072d0", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/7569422e-8877-4497-98f5-1ed13f6b31b3", + "name": "7569422e-8877-4497-98f5-1ed13f6b31b3", "status": "Succeeded", "startTime": null, "endTime": null, @@ -1396,43 +1676,43 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-6168/providers/Microsoft.Cache/redis/RedisBegin5086?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-3867/providers/Microsoft.Cache/redis/RedisBegin5150?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-0e2190a643dd4649bb247fd1ccda3380-bc17949f598b3843-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0ddffe78e8f60880f2fac93166bdf114", + "traceparent": "00-60607b0d9412d14a8bb7d51981ad5bba-10f4b14d1e111444-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "bf2a164081be2758dc0b49b15f16713e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "0ddffe78e8f60880f2fac93166bdf114", - "Content-Length": "960", + "client-request-id": "bf2a164081be2758dc0b49b15f16713e", + "Content-Length": "957", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 25 Aug 2022 07:00:50 GMT", + "Date": "Tue, 25 Oct 2022 23:03:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8df9978b-206e-45dd-befd-8c4acd05cb7a", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "fdc3d5d4-cbcf-468f-8e6e-4b68cdc89c79", - "x-ms-routing-request-id": "KOREASOUTH:20220825T070051Z:8df9978b-206e-45dd-befd-8c4acd05cb7a", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "359277be-f363-44ad-bb49-8e64cf9a3713", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "acf9b1fc-b5cd-4236-8588-15848e35b835", + "x-ms-routing-request-id": "WESTUS2:20221025T230332Z:359277be-f363-44ad-bb49-8e64cf9a3713", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-6168/providers/Microsoft.Cache/Redis/RedisBegin5086", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-3867/providers/Microsoft.Cache/Redis/RedisBegin5150", "location": "East US", - "name": "RedisBegin5086", + "name": "RedisBegin5150", "type": "Microsoft.Cache/Redis", "tags": {}, "properties": { "provisioningState": "Succeeded", - "redisVersion": "6.0.14", + "redisVersion": "6.0", "sku": { "name": "Premium", "family": "P", @@ -1469,7 +1749,7 @@ "maxmemory-delta": "642" }, "accessKeys": null, - "hostName": "RedisBegin5086.redis.cache.windows.net", + "hostName": "RedisBegin5150.redis.cache.windows.net", "port": 6379, "sslPort": 6380, "replicasPerMaster": 2, @@ -1479,479 +1759,481 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-6168/providers/Microsoft.Cache/redis/RedisBegin5086?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-3867/providers/Microsoft.Cache/redis/RedisBegin5150?api-version=2022-06-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ae4dc239def796469a018a8b30a1fbe2-d9054451a7a69d44-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220825.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "00f09236c9de7b2e129323367cdf7205", + "traceparent": "00-e122e8b7b0415c48889ba30d1eff832a-5c304ab6773a2345-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "976f51ee8c3149b045696106597ba15d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "00f09236c9de7b2e129323367cdf7205", + "client-request-id": "976f51ee8c3149b045696106597ba15d", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 07:09:44 GMT", + "Date": "Tue, 25 Oct 2022 23:03:31 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/7068a1e6-67aa-403e-9fcb-1b70d4d29737?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/ef232f92-3fb2-47fd-9f5f-76fa981a2589?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "535e74d8-9017-4732-93af-9907725c1b0b", + "x-ms-correlation-request-id": "db917aa3-8312-41e4-af0d-466ffc2f029a", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-request-id": "7068a1e6-67aa-403e-9fcb-1b70d4d29737", - "x-ms-routing-request-id": "KOREASOUTH:20220825T070944Z:535e74d8-9017-4732-93af-9907725c1b0b", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "ef232f92-3fb2-47fd-9f5f-76fa981a2589", + "x-ms-routing-request-id": "WESTUS2:20221025T230332Z:db917aa3-8312-41e4-af0d-466ffc2f029a", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/7068a1e6-67aa-403e-9fcb-1b70d4d29737?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/ef232f92-3fb2-47fd-9f5f-76fa981a2589?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ae4dc239def796469a018a8b30a1fbe2-9f66cd4627cd414f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3cbb1bd78939af3ad063fb62c5498b13", + "traceparent": "00-e122e8b7b0415c48889ba30d1eff832a-065622598195894c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "aa563ee9fe8eb3db65e07a552052ce60", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "3cbb1bd78939af3ad063fb62c5498b13", + "client-request-id": "aa563ee9fe8eb3db65e07a552052ce60", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 07:09:45 GMT", + "Date": "Tue, 25 Oct 2022 23:03:31 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/7068a1e6-67aa-403e-9fcb-1b70d4d29737?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/ef232f92-3fb2-47fd-9f5f-76fa981a2589?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bc328237-9f7d-4236-9be8-33af18150db3", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "808f3024-aa7c-437a-92cc-fe9189bbc6f4", - "x-ms-routing-request-id": "KOREASOUTH:20220825T070945Z:bc328237-9f7d-4236-9be8-33af18150db3", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "553714f4-bdcd-4101-a1e7-c67c27e0b880", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "7a344514-c58f-4d68-957b-3c4212a40596", + "x-ms-routing-request-id": "WESTUS2:20221025T230332Z:553714f4-bdcd-4101-a1e7-c67c27e0b880", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/7068a1e6-67aa-403e-9fcb-1b70d4d29737?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/ef232f92-3fb2-47fd-9f5f-76fa981a2589?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ae4dc239def796469a018a8b30a1fbe2-13d26f5b21529a48-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5f76c48811e1d26e8e506b9cbb179305", + "traceparent": "00-e122e8b7b0415c48889ba30d1eff832a-3731d81d8c0f4a44-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "0ae8eb69e4ffe45618304c6932f21a85", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "5f76c48811e1d26e8e506b9cbb179305", + "client-request-id": "0ae8eb69e4ffe45618304c6932f21a85", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 07:09:46 GMT", + "Date": "Tue, 25 Oct 2022 23:03:32 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/7068a1e6-67aa-403e-9fcb-1b70d4d29737?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/ef232f92-3fb2-47fd-9f5f-76fa981a2589?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bac0c120-1545-40b2-8944-11b0556e6a42", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "b0f4c63f-5d34-4dc4-ac9e-28a82d3cddbe", - "x-ms-routing-request-id": "KOREASOUTH:20220825T070946Z:bac0c120-1545-40b2-8944-11b0556e6a42", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "0e72ad73-aa91-49a5-80ac-c48ba6524e09", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "a726e21b-dec1-495a-9a5b-af0e27c3c7cc", + "x-ms-routing-request-id": "WESTUS2:20221025T230333Z:0e72ad73-aa91-49a5-80ac-c48ba6524e09", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/7068a1e6-67aa-403e-9fcb-1b70d4d29737?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/ef232f92-3fb2-47fd-9f5f-76fa981a2589?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ae4dc239def796469a018a8b30a1fbe2-c765ec48b96e5646-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "605f5487362431cbcc2c0f4168a0d94b", + "traceparent": "00-e122e8b7b0415c48889ba30d1eff832a-4deaf97d97da0e49-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "1b1ce7d2f725c9cf7a6326088ee31ef8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "605f5487362431cbcc2c0f4168a0d94b", + "client-request-id": "1b1ce7d2f725c9cf7a6326088ee31ef8", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 07:09:47 GMT", + "Date": "Tue, 25 Oct 2022 23:03:35 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/7068a1e6-67aa-403e-9fcb-1b70d4d29737?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/ef232f92-3fb2-47fd-9f5f-76fa981a2589?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f111cb82-6d9f-4803-9dc4-171bdeb4fa46", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "2560a520-8d91-465f-9c21-ea430f42a9c1", - "x-ms-routing-request-id": "KOREASOUTH:20220825T070948Z:f111cb82-6d9f-4803-9dc4-171bdeb4fa46", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "e20e4741-cfe0-4985-b16c-66002be0cbe5", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "7c475731-1803-4720-a0db-b860b4451281", + "x-ms-routing-request-id": "WESTUS2:20221025T230335Z:e20e4741-cfe0-4985-b16c-66002be0cbe5", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/7068a1e6-67aa-403e-9fcb-1b70d4d29737?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/ef232f92-3fb2-47fd-9f5f-76fa981a2589?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ae4dc239def796469a018a8b30a1fbe2-99a6203b463b5240-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "238ffab6ab96c5edace8ade81d9df3b8", + "traceparent": "00-e122e8b7b0415c48889ba30d1eff832a-98507b24e917a241-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "4354f9f98cd7057ae872915eb1718072", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "238ffab6ab96c5edace8ade81d9df3b8", + "client-request-id": "4354f9f98cd7057ae872915eb1718072", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 07:09:49 GMT", + "Date": "Tue, 25 Oct 2022 23:03:36 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/7068a1e6-67aa-403e-9fcb-1b70d4d29737?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/ef232f92-3fb2-47fd-9f5f-76fa981a2589?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fb93b96c-8a54-4a97-9e21-0212ea67e719", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "6953f140-e6c6-415a-8ab1-c0fdeaa4c6b2", - "x-ms-routing-request-id": "KOREASOUTH:20220825T070949Z:fb93b96c-8a54-4a97-9e21-0212ea67e719", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "981e1ed9-646d-430b-8491-8e049c7a6302", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "523b0ff1-5826-4f71-a3a1-a055c72cc52c", + "x-ms-routing-request-id": "WESTUS2:20221025T230336Z:981e1ed9-646d-430b-8491-8e049c7a6302", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/7068a1e6-67aa-403e-9fcb-1b70d4d29737?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/ef232f92-3fb2-47fd-9f5f-76fa981a2589?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ae4dc239def796469a018a8b30a1fbe2-ffc58dd61f514f41-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "70daf5d02be951eff84593b5012d6aee", + "traceparent": "00-e122e8b7b0415c48889ba30d1eff832a-e4aa4c14e338164a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "3982f5c6b235713b1c1e8f9bbe4d5534", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "70daf5d02be951eff84593b5012d6aee", + "client-request-id": "3982f5c6b235713b1c1e8f9bbe4d5534", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 07:09:51 GMT", + "Date": "Tue, 25 Oct 2022 23:03:38 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/7068a1e6-67aa-403e-9fcb-1b70d4d29737?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/ef232f92-3fb2-47fd-9f5f-76fa981a2589?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9f7d70e9-c5b4-4cf8-9544-ccc159637479", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "8882acb9-212d-4f8e-8d7c-84778f160173", - "x-ms-routing-request-id": "KOREASOUTH:20220825T070951Z:9f7d70e9-c5b4-4cf8-9544-ccc159637479", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "186665f9-f60c-49f5-9aab-55fee581545b", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "465d97e7-6341-4a4b-935c-683831a6b4e7", + "x-ms-routing-request-id": "WESTUS2:20221025T230338Z:186665f9-f60c-49f5-9aab-55fee581545b", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/7068a1e6-67aa-403e-9fcb-1b70d4d29737?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/ef232f92-3fb2-47fd-9f5f-76fa981a2589?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ae4dc239def796469a018a8b30a1fbe2-f9061c7b733f074d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c1e620766f88dc6f6799b43b89e3132e", + "traceparent": "00-e122e8b7b0415c48889ba30d1eff832a-5e8f552e4ea98847-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "39705412d69e45ae6c1732b266701708", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "c1e620766f88dc6f6799b43b89e3132e", + "client-request-id": "39705412d69e45ae6c1732b266701708", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 07:09:55 GMT", + "Date": "Tue, 25 Oct 2022 23:03:42 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/7068a1e6-67aa-403e-9fcb-1b70d4d29737?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/ef232f92-3fb2-47fd-9f5f-76fa981a2589?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2ab4f3dc-79d7-40cf-9d6f-07093d8e09ba", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "8b359ea8-fdfc-4554-b342-a98d09a2dc34", - "x-ms-routing-request-id": "KOREASOUTH:20220825T070956Z:2ab4f3dc-79d7-40cf-9d6f-07093d8e09ba", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "f397ca59-a08a-4104-a31f-a36cc3558c88", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "03e5f261-78d7-4898-84b8-a11d06f881e9", + "x-ms-routing-request-id": "WESTUS2:20221025T230342Z:f397ca59-a08a-4104-a31f-a36cc3558c88", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/7068a1e6-67aa-403e-9fcb-1b70d4d29737?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/ef232f92-3fb2-47fd-9f5f-76fa981a2589?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ae4dc239def796469a018a8b30a1fbe2-560f96f80aa07645-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "7370573868c58b610a3d2b511837c47f", + "traceparent": "00-e122e8b7b0415c48889ba30d1eff832a-58c7c8ef2200de46-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "9942b3e2e56046c2bde227b8fcdf469a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "7370573868c58b610a3d2b511837c47f", + "client-request-id": "9942b3e2e56046c2bde227b8fcdf469a", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 07:10:04 GMT", + "Date": "Tue, 25 Oct 2022 23:03:50 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/7068a1e6-67aa-403e-9fcb-1b70d4d29737?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/ef232f92-3fb2-47fd-9f5f-76fa981a2589?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ca2f180c-1c73-4f9f-a3ae-00327d367150", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "5aad318c-4934-4668-94c2-3499d5e8da81", - "x-ms-routing-request-id": "KOREASOUTH:20220825T071004Z:ca2f180c-1c73-4f9f-a3ae-00327d367150", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "73898a71-4a9a-4b84-a33a-dba2c1183355", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "e03f33a2-63d6-4284-93c6-087bc92370e1", + "x-ms-routing-request-id": "WESTUS2:20221025T230350Z:73898a71-4a9a-4b84-a33a-dba2c1183355", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/7068a1e6-67aa-403e-9fcb-1b70d4d29737?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/ef232f92-3fb2-47fd-9f5f-76fa981a2589?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ae4dc239def796469a018a8b30a1fbe2-c121b536033ec04f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "fd71be7e32b7613086fe095076b4c715", + "traceparent": "00-e122e8b7b0415c48889ba30d1eff832a-75c9d550d6236844-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "5d4c5c1c4701efd4473ccc1e80880bab", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "fd71be7e32b7613086fe095076b4c715", + "client-request-id": "5d4c5c1c4701efd4473ccc1e80880bab", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 07:10:21 GMT", + "Date": "Tue, 25 Oct 2022 23:04:06 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/7068a1e6-67aa-403e-9fcb-1b70d4d29737?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/ef232f92-3fb2-47fd-9f5f-76fa981a2589?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f333a53a-3053-44b9-a7c7-bf025e7d7beb", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "7a0c6575-eb35-4ae9-a34b-7e6d1471d0b3", - "x-ms-routing-request-id": "KOREASOUTH:20220825T071021Z:f333a53a-3053-44b9-a7c7-bf025e7d7beb", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "4d23bc6e-2bf1-4ca8-8170-c3c11250a567", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "4d313883-2cd4-462f-bb7e-1f23821c2f70", + "x-ms-routing-request-id": "WESTUS2:20221025T230406Z:4d23bc6e-2bf1-4ca8-8170-c3c11250a567", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/7068a1e6-67aa-403e-9fcb-1b70d4d29737?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/ef232f92-3fb2-47fd-9f5f-76fa981a2589?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ae4dc239def796469a018a8b30a1fbe2-f96086d76c4c6644-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "aa7d6531f6bc0d28be5bb74a441ec32f", + "traceparent": "00-e122e8b7b0415c48889ba30d1eff832a-b8d296fc30299b49-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "0ab88706bb0b2dd492297bbcaff5498d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "aa7d6531f6bc0d28be5bb74a441ec32f", + "client-request-id": "0ab88706bb0b2dd492297bbcaff5498d", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 07:10:53 GMT", + "Date": "Tue, 25 Oct 2022 23:04:38 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/7068a1e6-67aa-403e-9fcb-1b70d4d29737?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/ef232f92-3fb2-47fd-9f5f-76fa981a2589?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f9f41d01-4a23-4e0f-a97a-e111f18a1516", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "cc2687eb-37a4-4897-9513-40b22ef01fd5", - "x-ms-routing-request-id": "KOREASOUTH:20220825T071053Z:f9f41d01-4a23-4e0f-a97a-e111f18a1516", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "31e8cf73-aa92-4246-b4be-efb397c6feef", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "013f30a0-61cf-412c-a1a7-208b631aba17", + "x-ms-routing-request-id": "WESTUS2:20221025T230439Z:31e8cf73-aa92-4246-b4be-efb397c6feef", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/7068a1e6-67aa-403e-9fcb-1b70d4d29737?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/ef232f92-3fb2-47fd-9f5f-76fa981a2589?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ae4dc239def796469a018a8b30a1fbe2-8a635e0e60ec1748-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "cabc35d416720677260fecc65f111456", + "Connection": "close", + "traceparent": "00-e122e8b7b0415c48889ba30d1eff832a-16c774f9bb0d5a4c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "099698d0ba249b07df52522418a4c634", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "cabc35d416720677260fecc65f111456", + "client-request-id": "099698d0ba249b07df52522418a4c634", + "Connection": "close", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 07:11:25 GMT", + "Date": "Tue, 25 Oct 2022 23:05:10 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/7068a1e6-67aa-403e-9fcb-1b70d4d29737?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/ef232f92-3fb2-47fd-9f5f-76fa981a2589?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cfff8bec-590a-4537-a7ba-b46e90cb9f85", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "d49354ae-6364-41d7-8ca7-94e124432225", - "x-ms-routing-request-id": "KOREASOUTH:20220825T071125Z:cfff8bec-590a-4537-a7ba-b46e90cb9f85", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "6c10e4e0-cc4e-4b0e-b5b0-df4d47ffdd54", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "99792acc-5aac-4aea-8b5c-624b51c6bc78", + "x-ms-routing-request-id": "WESTUS2:20221025T230511Z:6c10e4e0-cc4e-4b0e-b5b0-df4d47ffdd54", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/7068a1e6-67aa-403e-9fcb-1b70d4d29737?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/ef232f92-3fb2-47fd-9f5f-76fa981a2589?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ae4dc239def796469a018a8b30a1fbe2-f8fb223d9b5c274d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b31f16761aba87c296633e5b7ae61c67", + "traceparent": "00-e122e8b7b0415c48889ba30d1eff832a-ddeb2b0e6db4fe4f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "75b17cd73c26608e881fcad7cc174051", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "b31f16761aba87c296633e5b7ae61c67", + "client-request-id": "75b17cd73c26608e881fcad7cc174051", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 07:11:57 GMT", + "Date": "Tue, 25 Oct 2022 23:05:43 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/7068a1e6-67aa-403e-9fcb-1b70d4d29737?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/ef232f92-3fb2-47fd-9f5f-76fa981a2589?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f1732960-b6ab-46fd-bd0a-9332c62629cd", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "2a71c6a1-5ebe-4c1c-a6d9-4556c515dbd6", - "x-ms-routing-request-id": "KOREASOUTH:20220825T071158Z:f1732960-b6ab-46fd-bd0a-9332c62629cd", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "b1215e96-4b3a-4f40-9d43-ce7364eacd21", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "775ea6de-db43-4971-b615-18c12d89aa72", + "x-ms-routing-request-id": "WESTUS2:20221025T230543Z:b1215e96-4b3a-4f40-9d43-ce7364eacd21", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/7068a1e6-67aa-403e-9fcb-1b70d4d29737?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/ef232f92-3fb2-47fd-9f5f-76fa981a2589?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ae4dc239def796469a018a8b30a1fbe2-ee8b32fdd903bc4e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "417bda3bfcf71ba2ed7783ac0a61aead", + "traceparent": "00-e122e8b7b0415c48889ba30d1eff832a-c65a7e3f7e81344f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "e74d3ff301f24b86801d2ab869af14ee", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "417bda3bfcf71ba2ed7783ac0a61aead", + "client-request-id": "e74d3ff301f24b86801d2ab869af14ee", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 07:12:29 GMT", + "Date": "Tue, 25 Oct 2022 23:06:14 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/7068a1e6-67aa-403e-9fcb-1b70d4d29737?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/ef232f92-3fb2-47fd-9f5f-76fa981a2589?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9348d05e-8adb-4285-bbf1-41758f6b5768", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "21966ebf-fb5c-499f-ac72-79e1ea4112b4", - "x-ms-routing-request-id": "KOREASOUTH:20220825T071230Z:9348d05e-8adb-4285-bbf1-41758f6b5768", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "8a126615-0a94-4ece-87d3-7eb7d34e4516", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "0d857718-a328-4f5b-a832-41c89a4b339c", + "x-ms-routing-request-id": "WESTUS2:20221025T230615Z:8a126615-0a94-4ece-87d3-7eb7d34e4516", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/7068a1e6-67aa-403e-9fcb-1b70d4d29737?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/ef232f92-3fb2-47fd-9f5f-76fa981a2589?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ae4dc239def796469a018a8b30a1fbe2-2d46fc48db801348-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "2ed4604610feba747234340ed71b8b40", + "traceparent": "00-e122e8b7b0415c48889ba30d1eff832a-bdff355881d52746-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "32e44663d344936709358005f02fcec8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "2ed4604610feba747234340ed71b8b40", + "client-request-id": "32e44663d344936709358005f02fcec8", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 07:13:02 GMT", + "Date": "Tue, 25 Oct 2022 23:06:47 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/7068a1e6-67aa-403e-9fcb-1b70d4d29737?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/ef232f92-3fb2-47fd-9f5f-76fa981a2589?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "11e53a15-77d3-4ab9-a2fd-53fc1dd3b13a", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "cd6d7483-98b6-4fc8-8026-d689cdd0a616", - "x-ms-routing-request-id": "KOREASOUTH:20220825T071303Z:11e53a15-77d3-4ab9-a2fd-53fc1dd3b13a", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "202ab208-2ec4-4cd3-9f4d-cf8916350454", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "1734bf85-8587-406f-ad9a-570315068065", + "x-ms-routing-request-id": "WESTUS2:20221025T230647Z:202ab208-2ec4-4cd3-9f4d-cf8916350454", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/7068a1e6-67aa-403e-9fcb-1b70d4d29737?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/ef232f92-3fb2-47fd-9f5f-76fa981a2589?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ae4dc239def796469a018a8b30a1fbe2-bcb7078cd6fa5845-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "848b84f3d396795f7304c54396167d34", + "traceparent": "00-e122e8b7b0415c48889ba30d1eff832a-ab68631a8aa08842-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "d8300112de56d542f565f50811d5f7d8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "848b84f3d396795f7304c54396167d34", + "client-request-id": "d8300112de56d542f565f50811d5f7d8", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 07:13:35 GMT", + "Date": "Tue, 25 Oct 2022 23:07:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "433c7181-0af1-43f1-a0b5-10155eaf8b67", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "25dabbeb-afeb-4f70-8924-381c4eec4747", - "x-ms-routing-request-id": "KOREASOUTH:20220825T071335Z:433c7181-0af1-43f1-a0b5-10155eaf8b67", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "dd010202-81db-4422-b6b0-cd73b87ca0f5", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "139e8d1a-5694-4fe7-866b-53ceb1e11a4c", + "x-ms-routing-request-id": "WESTUS2:20221025T230720Z:dd010202-81db-4422-b6b0-cd73b87ca0f5", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-6168/providers/Microsoft.Cache/redis/RedisBegin5086?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-3867/providers/Microsoft.Cache/redis/RedisBegin5150?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ef17d3067eab4047ae74e1e54673dde2-8c804d822117ee40-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220825.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1a1491b4ee122a6965c0cec2c89444d2", + "traceparent": "00-08e25389e77ba142802de0f4936eb1b6-964623b7b6015c4f-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET Framework 4.8.9075.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "8573dc0a0d32200cd8b9debd81815b50", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1960,28 +2242,28 @@ "Cache-Control": "no-cache", "Content-Length": "219", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 25 Aug 2022 07:13:35 GMT", + "Date": "Tue, 25 Oct 2022 23:07:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "510e409a-bcfb-46f6-862d-b1901a397e3d", + "x-ms-correlation-request-id": "d49de565-e4ca-44cd-a7cf-7621c1603fcb", "x-ms-failure-cause": "gateway", - "x-ms-request-id": "510e409a-bcfb-46f6-862d-b1901a397e3d", - "x-ms-routing-request-id": "KOREASOUTH:20220825T071335Z:510e409a-bcfb-46f6-862d-b1901a397e3d" + "x-ms-request-id": "d49de565-e4ca-44cd-a7cf-7621c1603fcb", + "x-ms-routing-request-id": "WESTUS2:20221025T230720Z:d49de565-e4ca-44cd-a7cf-7621c1603fcb" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.Cache/Redis/RedisBegin5086\u0027 under resource group \u0027testRG-6168\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The Resource \u0027Microsoft.Cache/Redis/RedisBegin5150\u0027 under resource group \u0027testRG-3867\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" } } } ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1768830261", + "RandomSeed": "1479221748", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + "SUBSCRIPTION_ID": "3919658b-68ae-4509-8c17-6a2238340ae7" } } diff --git a/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/CreateUpdateDeleteFunctionalTests/CreateUpdateDeleteTest.json b/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/CreateUpdateDeleteFunctionalTests/CreateUpdateDeleteTest.json index c160a366c012..8c35eadcaa7b 100644 --- a/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/CreateUpdateDeleteFunctionalTests/CreateUpdateDeleteTest.json +++ b/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/CreateUpdateDeleteFunctionalTests/CreateUpdateDeleteTest.json @@ -1,52 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1959cc6da13cb540830bc04179064a59-8fa92780b026fe41-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "39cc41e32b5c68bf9a7e375c2a8d92a2", + "traceparent": "00-2487706de001e26183babc8877a5a705-cae358f19cf5e728-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "73fa82cde839215071fa16a37f49f200", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "747", + "Content-Length": "405", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 25 Aug 2022 09:41:46 GMT", + "Date": "Wed, 26 Oct 2022 04:36:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3327e0ce-5402-43b5-81a3-5abd17fb3b9a", + "x-ms-correlation-request-id": "0ecb9594-9f6d-4836-945c-e3e157d6338d", "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "3327e0ce-5402-43b5-81a3-5abd17fb3b9a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T094146Z:3327e0ce-5402-43b5-81a3-5abd17fb3b9a" + "x-ms-request-id": "0ecb9594-9f6d-4836-945c-e3e157d6338d", + "x-ms-routing-request-id": "WESTUS2:20221026T043622Z:0ecb9594-9f6d-4836-945c-e3e157d6338d" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7", "authorizationSource": "RoleBased", "managedByTenants": [], - "tags": { - "TagKey-9823": "TagValue-566", - "TagKey-3481": "TagValue-320", - "TagKey-4926": "TagValue-1187", - "TagKey-751": "TagValue-3921", - "TagKey-1866": "TagValue-8559", - "TagKey-3094": "TagValue-9190", - "TagKey-2449": "TagValue-9", - "TagKey-8379": "TagValue-164", - "TagKey-7470": "TagValue-2205", - "TagKey-4236": "TagValue-3698", - "TagKey-5316": "TagValue-2725" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "subscriptionId": "3919658b-68ae-4509-8c17-6a2238340ae7", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "displayName": "CacheTeam - Austin Tolani", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -56,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRG-523?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/testRG-1502?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "43", "Content-Type": "application/json", - "traceparent": "00-e009292f3ff04843b82935d8eae47e9e-090ff3bdf3012740-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3e9f68e898d8dd22b5d996f77a26a17b", + "traceparent": "00-a3c6bc280b91c3e090d73284703fd3bd-eaf5a2fd8aa2822c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a19f75b9dc24e5edc90bd0f1e6d6c817", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -77,21 +64,21 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "239", + "Content-Length": "241", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 25 Aug 2022 09:41:50 GMT", + "Date": "Wed, 26 Oct 2022 04:36:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8fee12d9-99a0-4441-9fa4-51db14ffc585", + "x-ms-correlation-request-id": "a9b80b53-965e-42b0-8930-ff4764918b40", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "8fee12d9-99a0-4441-9fa4-51db14ffc585", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T094150Z:8fee12d9-99a0-4441-9fa4-51db14ffc585" + "x-ms-request-id": "a9b80b53-965e-42b0-8930-ff4764918b40", + "x-ms-routing-request-id": "WESTUS2:20221026T043624Z:a9b80b53-965e-42b0-8930-ff4764918b40" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-523", - "name": "testRG-523", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-1502", + "name": "testRG-1502", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "tags": { @@ -103,16 +90,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-523/providers/Microsoft.Cache/redis/RedisBegin6088?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-1502/providers/Microsoft.Cache/redis/RedisBegin8768?api-version=2022-06-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "85", "Content-Type": "application/json", - "traceparent": "00-dda8aebacc03a84faa9d4cea9dc6e995-40adf2b7bda89f44-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220825.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d4ec29fc3143fd8f8a8f4b5d9a362be4", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-04758b2816d028a7-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "9c93403075d43c832dcc6203465d52b1", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -127,33 +114,33 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "d4ec29fc3143fd8f8a8f4b5d9a362be4", - "Content-Length": "757", + "client-request-id": "9c93403075d43c832dcc6203465d52b1", + "Content-Length": "755", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 25 Aug 2022 09:41:57 GMT", + "Date": "Wed, 26 Oct 2022 04:36:26 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-523/providers/Microsoft.Cache/redis/RedisBegin6088?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-1502/providers/Microsoft.Cache/redis/RedisBegin8768?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bd9a1055-7327-40ac-b48f-badd00995ee9", + "x-ms-correlation-request-id": "5de90550-a60c-4e2d-95fc-7ea379f846cb", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "ce20bfd7-4867-400c-8274-a566f9bddb8c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T094158Z:bd9a1055-7327-40ac-b48f-badd00995ee9", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "x-ms-routing-request-id": "WESTUS2:20221026T043627Z:5de90550-a60c-4e2d-95fc-7ea379f846cb", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-523/providers/Microsoft.Cache/Redis/RedisBegin6088", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-1502/providers/Microsoft.Cache/Redis/RedisBegin8768", "location": "East US", - "name": "RedisBegin6088", + "name": "RedisBegin8768", "type": "Microsoft.Cache/Redis", "tags": {}, "properties": { "provisioningState": "Creating", - "redisVersion": "4.0.14", + "redisVersion": "6.0", "sku": { "name": "Basic", "family": "C", @@ -178,7 +165,7 @@ "primaryKey": "Sanitized", "secondaryKey": "Sanitized" }, - "hostName": "RedisBegin6088.redis.cache.windows.net", + "hostName": "RedisBegin8768.redis.cache.windows.net", "port": 6379, "sslPort": 6380, "linkedServers": [] @@ -186,38 +173,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dda8aebacc03a84faa9d4cea9dc6e995-d7fe10e78b04434d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "699189e118b537a410404d09d7801ba2", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-386e258a0bf7b12b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b1196c8bdb6d00e51b64f60f8be282ae", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "699189e118b537a410404d09d7801ba2", + "client-request-id": "b1196c8bdb6d00e51b64f60f8be282ae", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:41:58 GMT", + "Date": "Wed, 26 Oct 2022 04:36:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a3fa7115-320a-448f-a40b-75773061c62f", + "x-ms-correlation-request-id": "6dc078d1-9a1c-4966-b4c0-366db108e61a", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "612b3a8b-a1c9-4ce3-98ef-35cfef64cbb8", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T094158Z:a3fa7115-320a-448f-a40b-75773061c62f", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "d88f5408-ac2d-46db-a2b6-73265fb3d21f", + "x-ms-routing-request-id": "WESTUS2:20221026T043627Z:6dc078d1-9a1c-4966-b4c0-366db108e61a", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c", - "name": "ce20bfd7-4867-400c-8274-a566f9bddb8c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", "status": "InProgress", "startTime": null, "endTime": null, @@ -227,38 +214,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dda8aebacc03a84faa9d4cea9dc6e995-b6e3df91a2e94648-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "535a136b781df19f7f42789ce0668c6a", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-ef2e3d56eb3a9208-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a0f13f7dae8d86a49b860e6498030ca2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "535a136b781df19f7f42789ce0668c6a", + "client-request-id": "a0f13f7dae8d86a49b860e6498030ca2", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:41:59 GMT", + "Date": "Wed, 26 Oct 2022 04:36:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "47fd6a9c-1d86-45b4-b505-5abc3f9e763d", + "x-ms-correlation-request-id": "9974500b-6b2d-48bf-99a9-74a5d57496f9", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "5e929888-3ef0-4c0f-b50e-b8b2c7b213b3", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T094200Z:47fd6a9c-1d86-45b4-b505-5abc3f9e763d", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "8291e352-dbbf-45f1-93e8-b41f3ee8315a", + "x-ms-routing-request-id": "WESTUS2:20221026T043628Z:9974500b-6b2d-48bf-99a9-74a5d57496f9", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c", - "name": "ce20bfd7-4867-400c-8274-a566f9bddb8c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", "status": "InProgress", "startTime": null, "endTime": null, @@ -268,38 +255,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dda8aebacc03a84faa9d4cea9dc6e995-c12477935148ec45-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "117bb537c1a5072e2e4df2c0bda0d2da", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-6915a8c932c8176e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d97714a8a1441a44503a4d09b29580ab", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "117bb537c1a5072e2e4df2c0bda0d2da", + "client-request-id": "d97714a8a1441a44503a4d09b29580ab", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:42:01 GMT", + "Date": "Wed, 26 Oct 2022 04:36:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "86a710f8-0e6d-4b8c-9643-9f6ab2989656", + "x-ms-correlation-request-id": "ce6ffb83-ee4b-4847-9389-dd78e83d38aa", "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "5e64611e-7cdf-40d5-9593-8a23ec71a8c9", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T094201Z:86a710f8-0e6d-4b8c-9643-9f6ab2989656", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "5d133974-e300-4eba-af8b-13a759392f67", + "x-ms-routing-request-id": "WESTUS2:20221026T043629Z:ce6ffb83-ee4b-4847-9389-dd78e83d38aa", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c", - "name": "ce20bfd7-4867-400c-8274-a566f9bddb8c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", "status": "InProgress", "startTime": null, "endTime": null, @@ -309,38 +296,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dda8aebacc03a84faa9d4cea9dc6e995-608ccc4fb8950943-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5dbdae8b04c56878e99fe973a00857a9", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-826750ae6f8aefe9-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f0022eed8399ddbfc79216e6cc806817", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "5dbdae8b04c56878e99fe973a00857a9", + "client-request-id": "f0022eed8399ddbfc79216e6cc806817", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:42:02 GMT", + "Date": "Wed, 26 Oct 2022 04:36:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0d892555-d78e-4275-a6c3-a70e130bc006", + "x-ms-correlation-request-id": "610b7033-af65-4fb6-ac7f-8a0e3888d46f", "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "f804724c-3e48-46c4-8633-0b87b69179c8", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T094202Z:0d892555-d78e-4275-a6c3-a70e130bc006", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "208ce8e5-fca8-4720-914c-337c66fa3370", + "x-ms-routing-request-id": "WESTUS2:20221026T043631Z:610b7033-af65-4fb6-ac7f-8a0e3888d46f", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c", - "name": "ce20bfd7-4867-400c-8274-a566f9bddb8c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", "status": "InProgress", "startTime": null, "endTime": null, @@ -350,38 +337,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dda8aebacc03a84faa9d4cea9dc6e995-99dccc70f2b09b47-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "22d1e3b30905a9fde55224d086de34df", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-aec30c21b55a2694-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "77675458a96bdb69fbd65052619bd405", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "22d1e3b30905a9fde55224d086de34df", + "client-request-id": "77675458a96bdb69fbd65052619bd405", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:42:04 GMT", + "Date": "Wed, 26 Oct 2022 04:36:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8973393a-1f00-49b5-8aea-a39e68629fdc", + "x-ms-correlation-request-id": "28e559d0-26d4-4ce0-8965-991d4e31a04d", "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "efee383f-e6c2-4bb5-a85a-098addc22236", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T094205Z:8973393a-1f00-49b5-8aea-a39e68629fdc", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "b11d9424-eb20-497f-8657-fc9b801efbe5", + "x-ms-routing-request-id": "WESTUS2:20221026T043633Z:28e559d0-26d4-4ce0-8965-991d4e31a04d", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c", - "name": "ce20bfd7-4867-400c-8274-a566f9bddb8c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", "status": "InProgress", "startTime": null, "endTime": null, @@ -391,38 +378,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dda8aebacc03a84faa9d4cea9dc6e995-0063419115220a47-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "31109d702fa933a43d122705d7ba6725", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-d1e582f147eafe3e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "697663051b012408549911b18b5d4dcf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "31109d702fa933a43d122705d7ba6725", + "client-request-id": "697663051b012408549911b18b5d4dcf", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:42:08 GMT", + "Date": "Wed, 26 Oct 2022 04:36:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5d50a535-7ddc-457a-bc28-8bd428ec358f", + "x-ms-correlation-request-id": "5f965154-e3eb-4367-b185-79cb35f5494b", "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "5734464b-a3d8-42a3-bfa3-43f509f949c3", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T094209Z:5d50a535-7ddc-457a-bc28-8bd428ec358f", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "4e7180f6-2953-4829-9328-eba81a6c0793", + "x-ms-routing-request-id": "WESTUS2:20221026T043637Z:5f965154-e3eb-4367-b185-79cb35f5494b", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c", - "name": "ce20bfd7-4867-400c-8274-a566f9bddb8c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", "status": "InProgress", "startTime": null, "endTime": null, @@ -432,38 +419,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dda8aebacc03a84faa9d4cea9dc6e995-409968d0e4d4a24f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "da0d49f5afce81d5b1137873dfa7e20a", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-caec57b268bcf720-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5eb035d2092e443fc426f4c2336c7c2c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "da0d49f5afce81d5b1137873dfa7e20a", + "client-request-id": "5eb035d2092e443fc426f4c2336c7c2c", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:42:17 GMT", + "Date": "Wed, 26 Oct 2022 04:36:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d17165e9-ab0a-4d56-be0a-d004a41e051f", + "x-ms-correlation-request-id": "cdb7340a-826a-413a-8cb4-ab125c4f661d", "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "80906dbe-7b84-4800-be71-69d39019bb6d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T094218Z:d17165e9-ab0a-4d56-be0a-d004a41e051f", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "8a392db7-d305-487a-8191-df36f16a978f", + "x-ms-routing-request-id": "WESTUS2:20221026T043645Z:cdb7340a-826a-413a-8cb4-ab125c4f661d", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c", - "name": "ce20bfd7-4867-400c-8274-a566f9bddb8c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", "status": "InProgress", "startTime": null, "endTime": null, @@ -473,38 +460,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dda8aebacc03a84faa9d4cea9dc6e995-e98107cec44ad84e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "02020a6b25f784ff3e9ee4f2e1f7d12a", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-65ffd42b2ae9c634-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "68e010befe0a3c164b4222d197b74f9e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "02020a6b25f784ff3e9ee4f2e1f7d12a", + "client-request-id": "68e010befe0a3c164b4222d197b74f9e", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:42:33 GMT", + "Date": "Wed, 26 Oct 2022 04:37:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2110f9ad-26c8-4e88-9ba9-9678754e5190", + "x-ms-correlation-request-id": "7104beda-efd6-4fb0-9a66-24244b84c015", "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "58d99b08-a3da-4a62-910a-375a2179d922", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T094234Z:2110f9ad-26c8-4e88-9ba9-9678754e5190", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "90cd7d59-0bd7-4ec7-a963-204e05b3134c", + "x-ms-routing-request-id": "WESTUS2:20221026T043701Z:7104beda-efd6-4fb0-9a66-24244b84c015", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c", - "name": "ce20bfd7-4867-400c-8274-a566f9bddb8c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", "status": "InProgress", "startTime": null, "endTime": null, @@ -514,38 +501,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dda8aebacc03a84faa9d4cea9dc6e995-4db1394608f9f14d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3ddaffea5ad1c011c88e7f95b6315395", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-e182532c79eac770-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2b80808975ebfbd62432a4da2745f1e7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "3ddaffea5ad1c011c88e7f95b6315395", + "client-request-id": "2b80808975ebfbd62432a4da2745f1e7", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:43:05 GMT", + "Date": "Wed, 26 Oct 2022 04:37:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a3368120-8bf2-4673-ade2-f99595440cdd", + "x-ms-correlation-request-id": "d9ddf804-a4aa-45e8-974c-914ae5d1a2a4", "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "f571e004-d5a9-4bce-a792-86d9dcca36b2", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T094306Z:a3368120-8bf2-4673-ade2-f99595440cdd", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "bf4cda2d-1586-4073-b8cb-1ffce1fe2644", + "x-ms-routing-request-id": "WESTUS2:20221026T043733Z:d9ddf804-a4aa-45e8-974c-914ae5d1a2a4", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c", - "name": "ce20bfd7-4867-400c-8274-a566f9bddb8c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", "status": "InProgress", "startTime": null, "endTime": null, @@ -555,38 +542,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dda8aebacc03a84faa9d4cea9dc6e995-42791f8d7a217549-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "cd9a1d3065b8d02d49889b30cbe3a0ba", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-de2ef5760a8a6182-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7af3e51de47cd3c51e7313ebe76dac0d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "cd9a1d3065b8d02d49889b30cbe3a0ba", + "client-request-id": "7af3e51de47cd3c51e7313ebe76dac0d", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:43:39 GMT", + "Date": "Wed, 26 Oct 2022 04:38:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "64586548-7d65-4397-aad9-a98ee9cd5d54", + "x-ms-correlation-request-id": "fc99b79f-9a93-43a2-b991-5f2b4b18d834", "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "90188ad5-530d-4a25-8e87-df8d2f96e9bb", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T094339Z:64586548-7d65-4397-aad9-a98ee9cd5d54", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "dcab4f2a-fd4a-4e17-97e1-3edbd6a60e4b", + "x-ms-routing-request-id": "WESTUS2:20221026T043805Z:fc99b79f-9a93-43a2-b991-5f2b4b18d834", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c", - "name": "ce20bfd7-4867-400c-8274-a566f9bddb8c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", "status": "InProgress", "startTime": null, "endTime": null, @@ -596,38 +583,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dda8aebacc03a84faa9d4cea9dc6e995-33be9dfec1f90346-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e0894e41a5cd1138f8413a69a569cd0d", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-5cae19fdf5b41a3f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b23956d750ec49413ae444d75a3c1505", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "e0894e41a5cd1138f8413a69a569cd0d", + "client-request-id": "b23956d750ec49413ae444d75a3c1505", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:44:11 GMT", + "Date": "Wed, 26 Oct 2022 04:38:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dfa6f41d-634c-47ad-abe7-9285ac38bb2f", + "x-ms-correlation-request-id": "23434733-41c8-43ca-b6be-c7a44591d93b", "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "b64cfd64-7566-45b5-8deb-90b9035b47e3", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T094412Z:dfa6f41d-634c-47ad-abe7-9285ac38bb2f", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "5687a7e8-0b45-4074-98e4-caff8580dd63", + "x-ms-routing-request-id": "WESTUS2:20221026T043838Z:23434733-41c8-43ca-b6be-c7a44591d93b", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c", - "name": "ce20bfd7-4867-400c-8274-a566f9bddb8c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", "status": "InProgress", "startTime": null, "endTime": null, @@ -637,38 +624,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dda8aebacc03a84faa9d4cea9dc6e995-fc1bb100907fc048-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c4c24e4b045c8471d10af449bee1f5e4", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-5586e7412d9fe2b4-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b2b43a50d4c4a421bbac0c7761ea14b6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "c4c24e4b045c8471d10af449bee1f5e4", + "client-request-id": "b2b43a50d4c4a421bbac0c7761ea14b6", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:44:43 GMT", + "Date": "Wed, 26 Oct 2022 04:39:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "99b892d2-6d70-4272-aa80-8cb34c835e43", + "x-ms-correlation-request-id": "55e2623b-28fb-4277-b6f8-db78a9ba17b3", "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "4dba67ad-7695-42e0-a117-2d22a3527e2b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T094444Z:99b892d2-6d70-4272-aa80-8cb34c835e43", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "85f166fe-15e0-4386-88d1-9eb7c391e31e", + "x-ms-routing-request-id": "WESTUS2:20221026T043910Z:55e2623b-28fb-4277-b6f8-db78a9ba17b3", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c", - "name": "ce20bfd7-4867-400c-8274-a566f9bddb8c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", "status": "InProgress", "startTime": null, "endTime": null, @@ -678,38 +665,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dda8aebacc03a84faa9d4cea9dc6e995-c29613913cef8a46-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6854c5ee72a88ac8e589d4762bc42adf", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-afcf967f601a1651-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d10397863f0cccfaa4aa4098a0ee78e2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "6854c5ee72a88ac8e589d4762bc42adf", + "client-request-id": "d10397863f0cccfaa4aa4098a0ee78e2", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:45:16 GMT", + "Date": "Wed, 26 Oct 2022 04:39:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f8265867-6c44-4c6a-8f56-ca02ee13caf2", + "x-ms-correlation-request-id": "b9b435b4-6892-4170-9039-89beb9ba7434", "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "ca36f3cd-96bd-4331-a2a7-2928a0fb4e24", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T094516Z:f8265867-6c44-4c6a-8f56-ca02ee13caf2", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "f4338504-e6df-414e-8aba-31ebb94271ba", + "x-ms-routing-request-id": "WESTUS2:20221026T043942Z:b9b435b4-6892-4170-9039-89beb9ba7434", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c", - "name": "ce20bfd7-4867-400c-8274-a566f9bddb8c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", "status": "InProgress", "startTime": null, "endTime": null, @@ -719,38 +706,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dda8aebacc03a84faa9d4cea9dc6e995-8c472e879499934d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "7ce58ebadb203d5ddc040fc3b1ee5217", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-9604bdb47584b73e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ac9b0d5efab802483494f74043cae74f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "7ce58ebadb203d5ddc040fc3b1ee5217", + "client-request-id": "ac9b0d5efab802483494f74043cae74f", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:45:48 GMT", + "Date": "Wed, 26 Oct 2022 04:40:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "613699eb-37f6-4cc7-9d92-90d774bd36e4", + "x-ms-correlation-request-id": "84dabe73-7daa-47e3-b9c2-be1ec3a9f876", "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "586dd3b8-f405-49e1-b29f-8e762ab20600", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T094549Z:613699eb-37f6-4cc7-9d92-90d774bd36e4", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "fd7af19e-75ef-457e-8893-1c1d5c904f0d", + "x-ms-routing-request-id": "WESTUS2:20221026T044014Z:84dabe73-7daa-47e3-b9c2-be1ec3a9f876", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c", - "name": "ce20bfd7-4867-400c-8274-a566f9bddb8c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", "status": "InProgress", "startTime": null, "endTime": null, @@ -760,38 +747,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dda8aebacc03a84faa9d4cea9dc6e995-e28f3dbcce2e2642-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e07a554c6515d8658637dfd32ffa590c", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-687e6bb85eea104a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c3518dd0433811f93fe80e1a948904cc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "e07a554c6515d8658637dfd32ffa590c", + "client-request-id": "c3518dd0433811f93fe80e1a948904cc", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:46:20 GMT", + "Date": "Wed, 26 Oct 2022 04:40:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cdb0f51f-1970-448e-9353-3c762da585bc", + "x-ms-correlation-request-id": "f4134769-9265-42ce-9ab5-0f6305bc4992", "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "136451fe-cd3a-4c7d-9d89-6337dd6c5767", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T094621Z:cdb0f51f-1970-448e-9353-3c762da585bc", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "37d9aaef-63f3-45c5-af0e-8588cf163f10", + "x-ms-routing-request-id": "WESTUS2:20221026T044046Z:f4134769-9265-42ce-9ab5-0f6305bc4992", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c", - "name": "ce20bfd7-4867-400c-8274-a566f9bddb8c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", "status": "InProgress", "startTime": null, "endTime": null, @@ -801,38 +788,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dda8aebacc03a84faa9d4cea9dc6e995-ea071b242f85d346-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "308f15e078fb12c468178ba36304d9f6", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-f1bb3101f32427ec-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "54182a33674f8cfd4e019c7747ba88d9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "308f15e078fb12c468178ba36304d9f6", + "client-request-id": "54182a33674f8cfd4e019c7747ba88d9", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:46:53 GMT", + "Date": "Wed, 26 Oct 2022 04:41:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8ee173e4-61ff-482e-8928-183004fc2160", + "x-ms-correlation-request-id": "19ffb8bc-e5b0-4ff4-b4e6-abdc455a9f19", "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "bb51b838-fde1-4e5b-8d0f-fcc3701b8631", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T094654Z:8ee173e4-61ff-482e-8928-183004fc2160", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "ff51c9a9-f85b-461b-aa81-7e79720b8de2", + "x-ms-routing-request-id": "WESTUS2:20221026T044118Z:19ffb8bc-e5b0-4ff4-b4e6-abdc455a9f19", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c", - "name": "ce20bfd7-4867-400c-8274-a566f9bddb8c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", "status": "InProgress", "startTime": null, "endTime": null, @@ -842,38 +829,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dda8aebacc03a84faa9d4cea9dc6e995-2def40a31eb39f4f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d62abc374a4954c9290cf5e9fc8a0de1", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-22c4ec30f40a39cd-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "12c7f1c3b59d1baa13896cd0eb2e6dab", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "d62abc374a4954c9290cf5e9fc8a0de1", + "client-request-id": "12c7f1c3b59d1baa13896cd0eb2e6dab", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:47:26 GMT", + "Date": "Wed, 26 Oct 2022 04:41:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "06100307-430a-4138-8be2-2a66678e4972", + "x-ms-correlation-request-id": "d7b8f0b2-033b-439f-8120-dd1f47afece7", "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "e2ebfbb5-b41d-4e99-bd01-3a09581d5b37", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T094726Z:06100307-430a-4138-8be2-2a66678e4972", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "cdafcfdb-6e4d-4b41-8b75-60c129296e77", + "x-ms-routing-request-id": "WESTUS2:20221026T044150Z:d7b8f0b2-033b-439f-8120-dd1f47afece7", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c", - "name": "ce20bfd7-4867-400c-8274-a566f9bddb8c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", "status": "InProgress", "startTime": null, "endTime": null, @@ -883,38 +870,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dda8aebacc03a84faa9d4cea9dc6e995-8d756a5dfe6fc34b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9be302aa225fd31b916877fed9c17581", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-97c9c480491490c7-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "190c2a8f92b268ff8fc57537a681c985", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "9be302aa225fd31b916877fed9c17581", + "client-request-id": "190c2a8f92b268ff8fc57537a681c985", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:47:58 GMT", + "Date": "Wed, 26 Oct 2022 04:42:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6257d41d-3703-40e7-b228-a5a8ffac0135", + "x-ms-correlation-request-id": "26b3319f-a8f9-4d26-9291-23fb0453bd56", "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "2aff5ba7-99f2-4c96-bc9f-c55f6f4afb08", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T094758Z:6257d41d-3703-40e7-b228-a5a8ffac0135", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "cae84b51-4dd6-439c-b0dd-a42c2e5373d6", + "x-ms-routing-request-id": "WESTUS2:20221026T044222Z:26b3319f-a8f9-4d26-9291-23fb0453bd56", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c", - "name": "ce20bfd7-4867-400c-8274-a566f9bddb8c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", "status": "InProgress", "startTime": null, "endTime": null, @@ -924,38 +911,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dda8aebacc03a84faa9d4cea9dc6e995-99446c3d46a27348-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "729ce85d83d095c34b3a06ef82da15dd", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-962e17b259be5cb7-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a356345ff2c17e2f7ffc40c5fb2da01f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "729ce85d83d095c34b3a06ef82da15dd", + "client-request-id": "a356345ff2c17e2f7ffc40c5fb2da01f", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:48:30 GMT", + "Date": "Wed, 26 Oct 2022 04:42:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fa276546-249d-4a85-b2ae-6c9624fc0b03", + "x-ms-correlation-request-id": "4a70762f-b385-46fc-beda-a54c7249a492", "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "c8edd970-40b6-403f-98c6-acd319027017", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T094831Z:fa276546-249d-4a85-b2ae-6c9624fc0b03", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "ceec9d0c-8682-441e-8437-9db239890e95", + "x-ms-routing-request-id": "WESTUS2:20221026T044254Z:4a70762f-b385-46fc-beda-a54c7249a492", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c", - "name": "ce20bfd7-4867-400c-8274-a566f9bddb8c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", "status": "InProgress", "startTime": null, "endTime": null, @@ -965,38 +952,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dda8aebacc03a84faa9d4cea9dc6e995-f808ff3832ef1540-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "60f9aa093d211496a05644e1d2ca7b68", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-d5485a47a4c6931f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1de7f0936fae3027f15e82d83f727491", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "60f9aa093d211496a05644e1d2ca7b68", + "client-request-id": "1de7f0936fae3027f15e82d83f727491", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:49:03 GMT", + "Date": "Wed, 26 Oct 2022 04:43:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "983c8595-a9a3-440d-93b2-3043819efbf0", + "x-ms-correlation-request-id": "84e65df6-11e1-4200-8648-9b346e88fabf", "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "9261cb08-ae1e-402b-a8b3-53def91f7442", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T094904Z:983c8595-a9a3-440d-93b2-3043819efbf0", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "b6e0aecd-baff-4d1f-a6b2-130693df8dc7", + "x-ms-routing-request-id": "WESTUS2:20221026T044327Z:84e65df6-11e1-4200-8648-9b346e88fabf", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c", - "name": "ce20bfd7-4867-400c-8274-a566f9bddb8c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", "status": "InProgress", "startTime": null, "endTime": null, @@ -1006,38 +993,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dda8aebacc03a84faa9d4cea9dc6e995-fc595408d80d9a45-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "148b73979aee27103f4d50251c2c50b6", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-d025fb7e3a1e9a9f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b771e7c0cad79deafb8d99b552396d62", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "148b73979aee27103f4d50251c2c50b6", + "client-request-id": "b771e7c0cad79deafb8d99b552396d62", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:49:36 GMT", + "Date": "Wed, 26 Oct 2022 04:43:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1162deef-2152-4f16-b097-517f5076e08e", + "x-ms-correlation-request-id": "466bb70c-4d52-4544-bb2f-5c11e4066c2b", "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "2ddcce0c-2c83-47e4-b68a-23d71ed025d2", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T094936Z:1162deef-2152-4f16-b097-517f5076e08e", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "7383bcab-8344-4e2b-b733-30b5662555f7", + "x-ms-routing-request-id": "WESTUS2:20221026T044359Z:466bb70c-4d52-4544-bb2f-5c11e4066c2b", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c", - "name": "ce20bfd7-4867-400c-8274-a566f9bddb8c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", "status": "InProgress", "startTime": null, "endTime": null, @@ -1047,38 +1034,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dda8aebacc03a84faa9d4cea9dc6e995-8f1167c9f8a0f242-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "2ff59a5214c71f605287d2793ee2c380", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-c6c4c192a0e255fb-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b5a45524ac9af0d60c26b1626f573e0d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "2ff59a5214c71f605287d2793ee2c380", + "client-request-id": "b5a45524ac9af0d60c26b1626f573e0d", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:50:08 GMT", + "Date": "Wed, 26 Oct 2022 04:44:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ab15b88c-e9e0-43fa-9a8f-7146589f7e97", + "x-ms-correlation-request-id": "8020e6c4-6929-4fec-bc1a-60bdc4fded29", "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "f537ab22-fc1f-444e-87f0-e00261d0cd37", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T095008Z:ab15b88c-e9e0-43fa-9a8f-7146589f7e97", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "ea1480a8-e40a-444b-9ee5-100d69971176", + "x-ms-routing-request-id": "WESTUS2:20221026T044431Z:8020e6c4-6929-4fec-bc1a-60bdc4fded29", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c", - "name": "ce20bfd7-4867-400c-8274-a566f9bddb8c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", "status": "InProgress", "startTime": null, "endTime": null, @@ -1088,38 +1075,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dda8aebacc03a84faa9d4cea9dc6e995-e265262c85692049-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0e579dbf014f6eef99d221d4ed71f874", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-a04eabb95a45525c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1305ae88e8bbc84806492120d572ddb7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "0e579dbf014f6eef99d221d4ed71f874", + "client-request-id": "1305ae88e8bbc84806492120d572ddb7", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:50:40 GMT", + "Date": "Wed, 26 Oct 2022 04:45:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c274ea37-cfdd-41bd-bd03-1b82d8576f58", + "x-ms-correlation-request-id": "89a18cc4-7ab1-41e2-89e8-500df6701072", "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "0b8b59ee-172c-417f-a4bf-e77383c857da", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T095041Z:c274ea37-cfdd-41bd-bd03-1b82d8576f58", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "50412984-2a58-4280-a749-d0693b35abea", + "x-ms-routing-request-id": "WESTUS2:20221026T044503Z:89a18cc4-7ab1-41e2-89e8-500df6701072", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c", - "name": "ce20bfd7-4867-400c-8274-a566f9bddb8c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", "status": "InProgress", "startTime": null, "endTime": null, @@ -1129,38 +1116,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dda8aebacc03a84faa9d4cea9dc6e995-27ce11439774e44f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "388e8e064bd583a0136bc266c897e85d", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-ba55b4e4904af3f9-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "eab320f1bece14f71081aab119872ea4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "388e8e064bd583a0136bc266c897e85d", + "client-request-id": "eab320f1bece14f71081aab119872ea4", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:51:12 GMT", + "Date": "Wed, 26 Oct 2022 04:45:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "462cd508-ddc8-4213-8d11-9fa94bfb399b", + "x-ms-correlation-request-id": "cb1754f7-51c8-4acb-b2e1-7f411d64bdfd", "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "c71b10b3-ec9c-4aa9-af9a-2ff9b2e4d2eb", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T095113Z:462cd508-ddc8-4213-8d11-9fa94bfb399b", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "674e8b32-440f-4828-b5f6-8db662da251b", + "x-ms-routing-request-id": "WESTUS2:20221026T044535Z:cb1754f7-51c8-4acb-b2e1-7f411d64bdfd", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c", - "name": "ce20bfd7-4867-400c-8274-a566f9bddb8c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", "status": "InProgress", "startTime": null, "endTime": null, @@ -1170,38 +1157,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dda8aebacc03a84faa9d4cea9dc6e995-6871b3a19ee7c647-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "7e65cf8941d45167aa8696f5f28b32e0", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-188821fdbc2bbe88-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a32d8c4f59343ca60ddbae508ab61b9a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "7e65cf8941d45167aa8696f5f28b32e0", + "client-request-id": "a32d8c4f59343ca60ddbae508ab61b9a", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:51:46 GMT", + "Date": "Wed, 26 Oct 2022 04:46:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "66f4b3a5-b9e7-429c-8123-cac1c587fcba", + "x-ms-correlation-request-id": "f1ce8287-8a9a-44fd-a30d-0bd0190edbe1", "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "56f43f5d-0d25-44c9-ac9b-31f02e756721", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T095146Z:66f4b3a5-b9e7-429c-8123-cac1c587fcba", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "e9d3381f-7e5f-4969-9bb8-646249b09349", + "x-ms-routing-request-id": "WESTUS2:20221026T044607Z:f1ce8287-8a9a-44fd-a30d-0bd0190edbe1", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c", - "name": "ce20bfd7-4867-400c-8274-a566f9bddb8c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", "status": "InProgress", "startTime": null, "endTime": null, @@ -1211,38 +1198,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dda8aebacc03a84faa9d4cea9dc6e995-31142fcc79fae342-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b0735e8f8b5373aafdd4fbe33f88a602", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-3e12b731d1b86951-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4e71f94854a3c93eb7f1023a3e97af7f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "b0735e8f8b5373aafdd4fbe33f88a602", + "client-request-id": "4e71f94854a3c93eb7f1023a3e97af7f", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:52:18 GMT", + "Date": "Wed, 26 Oct 2022 04:46:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "009a4eaf-cc84-411c-b56a-2a6ec545afc1", + "x-ms-correlation-request-id": "13f56fe0-fc93-4cb6-a814-b5f0994a2b3b", "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "4a672aad-283e-43fa-9460-f28e6b3847e7", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T095218Z:009a4eaf-cc84-411c-b56a-2a6ec545afc1", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "26a742c0-94a9-4637-b3cd-82e7a20a2d11", + "x-ms-routing-request-id": "WESTUS2:20221026T044639Z:13f56fe0-fc93-4cb6-a814-b5f0994a2b3b", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c", - "name": "ce20bfd7-4867-400c-8274-a566f9bddb8c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", "status": "InProgress", "startTime": null, "endTime": null, @@ -1252,38 +1239,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dda8aebacc03a84faa9d4cea9dc6e995-170539c5e131a044-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1d4ac4e97a0bc49f273c8d4fb5ab9087", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-8ce69da927765554-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "48d17d1b3a4597837977ddf30fa7895a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "1d4ac4e97a0bc49f273c8d4fb5ab9087", + "client-request-id": "48d17d1b3a4597837977ddf30fa7895a", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:52:50 GMT", + "Date": "Wed, 26 Oct 2022 04:47:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7d9542b7-fd2f-4ce4-947f-239ac9cb1d48", + "x-ms-correlation-request-id": "ed19fa3e-cd06-4b68-a28e-11f427210b25", "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "733e06c7-8753-468c-837c-2952c144a7ff", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T095250Z:7d9542b7-fd2f-4ce4-947f-239ac9cb1d48", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "2f35391c-2676-4cd9-ace4-65e229f02d68", + "x-ms-routing-request-id": "WESTUS2:20221026T044711Z:ed19fa3e-cd06-4b68-a28e-11f427210b25", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c", - "name": "ce20bfd7-4867-400c-8274-a566f9bddb8c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", "status": "InProgress", "startTime": null, "endTime": null, @@ -1293,38 +1280,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dda8aebacc03a84faa9d4cea9dc6e995-4600e8cf16595c4b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6ad7e1393723fe0925f1810046831222", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-84109d402b45544c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1f681065e015fa004e63ec43566bfd76", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "6ad7e1393723fe0925f1810046831222", + "client-request-id": "1f681065e015fa004e63ec43566bfd76", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:53:22 GMT", + "Date": "Wed, 26 Oct 2022 04:47:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f6d7ab3c-fb1d-4837-942a-f34ec7a711dd", + "x-ms-correlation-request-id": "b43678af-d0b8-4f2c-bffd-dab27aacdfad", "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "643e13dc-ec3f-422a-ba8c-3e140a9812fa", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T095323Z:f6d7ab3c-fb1d-4837-942a-f34ec7a711dd", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "3a1dfa1b-4281-40ba-b21f-53f6b84fec04", + "x-ms-routing-request-id": "WESTUS2:20221026T044744Z:b43678af-d0b8-4f2c-bffd-dab27aacdfad", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c", - "name": "ce20bfd7-4867-400c-8274-a566f9bddb8c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", "status": "InProgress", "startTime": null, "endTime": null, @@ -1334,38 +1321,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dda8aebacc03a84faa9d4cea9dc6e995-28c8a46cb2dd6741-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "2d0b94df144114d4beaf8917fd5abe51", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-0e0184234b745f47-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0c352f2cd2e50e5476dad42c774bb910", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "2d0b94df144114d4beaf8917fd5abe51", + "client-request-id": "0c352f2cd2e50e5476dad42c774bb910", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:53:54 GMT", + "Date": "Wed, 26 Oct 2022 04:48:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c76935fd-5be5-4ef2-aadd-85000ecaf21c", + "x-ms-correlation-request-id": "40b8c721-669e-4e55-b2a7-9856bf516dcc", "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "e21c1f45-0cba-419d-8b27-28627d999621", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T095355Z:c76935fd-5be5-4ef2-aadd-85000ecaf21c", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "024dbbbb-9dd0-4f62-98a1-2643f7e925ed", + "x-ms-routing-request-id": "WESTUS2:20221026T044816Z:40b8c721-669e-4e55-b2a7-9856bf516dcc", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c", - "name": "ce20bfd7-4867-400c-8274-a566f9bddb8c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", "status": "InProgress", "startTime": null, "endTime": null, @@ -1375,38 +1362,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dda8aebacc03a84faa9d4cea9dc6e995-384fd9da2ca87048-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5daa73433cb0b2dfbb4bf81af99e7da4", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-27b14ca6297bcf5b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2dd4a8678f2e3a697dd6f9e14e40400e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "5daa73433cb0b2dfbb4bf81af99e7da4", + "client-request-id": "2dd4a8678f2e3a697dd6f9e14e40400e", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:54:28 GMT", + "Date": "Wed, 26 Oct 2022 04:48:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1564be20-388b-4760-b678-c6edf114a3b0", + "x-ms-correlation-request-id": "94356e54-17b5-4a34-9b5b-c088cf03678f", "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "f5ba5235-ebd5-47e4-a55a-c88e454246f8", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T095428Z:1564be20-388b-4760-b678-c6edf114a3b0", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "c3faf25a-a839-4a82-9c73-eeabd22d614f", + "x-ms-routing-request-id": "WESTUS2:20221026T044848Z:94356e54-17b5-4a34-9b5b-c088cf03678f", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c", - "name": "ce20bfd7-4867-400c-8274-a566f9bddb8c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", "status": "InProgress", "startTime": null, "endTime": null, @@ -1416,38 +1403,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dda8aebacc03a84faa9d4cea9dc6e995-a63c38b0d9695840-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "21706b2a62a024460dc3ab73aef201ca", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-9852f443dc2b024e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e0c667797d719375bb5aa93b0bd38303", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "21706b2a62a024460dc3ab73aef201ca", + "client-request-id": "e0c667797d719375bb5aa93b0bd38303", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:55:00 GMT", + "Date": "Wed, 26 Oct 2022 04:49:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4eae6097-90bd-45b2-a8ef-710b719bf8a3", + "x-ms-correlation-request-id": "0af6c35c-5329-4d7f-a9ec-2ac5d77bd998", "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "2613e871-6623-49cb-88ff-c301368af173", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T095500Z:4eae6097-90bd-45b2-a8ef-710b719bf8a3", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "cab7d498-18c9-4f19-bbea-7cc84f44ca62", + "x-ms-routing-request-id": "WESTUS2:20221026T044920Z:0af6c35c-5329-4d7f-a9ec-2ac5d77bd998", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c", - "name": "ce20bfd7-4867-400c-8274-a566f9bddb8c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", "status": "InProgress", "startTime": null, "endTime": null, @@ -1457,38 +1444,489 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dda8aebacc03a84faa9d4cea9dc6e995-218dcde50f5f1947-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d2bc2f33b4d8a371b45972f51cba1b1f", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-26d61f324ec43da3-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "aedbdbaad0969d47c5fa8f0ed973bf36", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "d2bc2f33b4d8a371b45972f51cba1b1f", - "Content-Length": "352", + "client-request-id": "aedbdbaad0969d47c5fa8f0ed973bf36", + "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:55:32 GMT", + "Date": "Wed, 26 Oct 2022 04:49:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c7895ce3-2d00-441b-956c-f03c9b3feba1", + "x-ms-correlation-request-id": "ed689dfb-7913-42a5-814c-8174c075044d", "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "39df960b-ba69-453b-bed7-e4e633374cd5", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T095533Z:c7895ce3-2d00-441b-956c-f03c9b3feba1", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "8b7fa358-7122-467d-8efb-13ebcec097de", + "x-ms-routing-request-id": "WESTUS2:20221026T044952Z:ed689dfb-7913-42a5-814c-8174c075044d", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-f4adf80ae9edc50b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "10b3c699d984ea9e334172d4e52d2eaa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "10b3c699d984ea9e334172d4e52d2eaa", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 04:50:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "43536ee5-1945-4e39-a1ca-af2c4d2f2ce9", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "d7ce25fc-4ee2-4fba-8584-434825c17cfc", + "x-ms-routing-request-id": "WESTUS2:20221026T045024Z:43536ee5-1945-4e39-a1ca-af2c4d2f2ce9", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-7508d099c191184b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7237f6529264a9771f291a77ee66b948", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "7237f6529264a9771f291a77ee66b948", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 04:50:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f1bf8d48-467d-4641-9bba-a18055f635e4", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "adfcc217-2c12-4980-98eb-bfdf740df347", + "x-ms-routing-request-id": "WESTUS2:20221026T045056Z:f1bf8d48-467d-4641-9bba-a18055f635e4", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-d272cdf9aa982ce9-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "45a2739a7320d17e3df17a555d72b898", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "45a2739a7320d17e3df17a555d72b898", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 04:51:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7bb3c0b0-d803-44d9-a9f0-585670091ab0", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "0a3a1879-72ce-420b-8f19-c5775fa6437c", + "x-ms-routing-request-id": "WESTUS2:20221026T045128Z:7bb3c0b0-d803-44d9-a9f0-585670091ab0", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-9e57fffabe40f007-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e2bbe4cb4c3c07d14e09f05bbe26fccd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "e2bbe4cb4c3c07d14e09f05bbe26fccd", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 04:52:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "266fc87c-ded3-426c-99a6-527172117db1", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "fcc6f22e-c1a4-4ff3-8bdf-c5855cf37670", + "x-ms-routing-request-id": "WESTUS2:20221026T045201Z:266fc87c-ded3-426c-99a6-527172117db1", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-52fab09f81595939-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "71392a87e98bdf897766347217224bad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "71392a87e98bdf897766347217224bad", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 04:52:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "682ae489-f8e9-45d4-8bb3-73903b9a905f", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "b1fb209b-9661-40cd-8c89-9605d161eff3", + "x-ms-routing-request-id": "WESTUS2:20221026T045233Z:682ae489-f8e9-45d4-8bb3-73903b9a905f", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-c4a1b4673d464d50-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "09ab8170d7ab4e0ba19af61683231217", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "09ab8170d7ab4e0ba19af61683231217", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 04:53:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8a140a7d-b8db-4b93-bc86-a89e84b795ce", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "fa89ae93-9156-410e-a51a-ac808c10a033", + "x-ms-routing-request-id": "WESTUS2:20221026T045305Z:8a140a7d-b8db-4b93-bc86-a89e84b795ce", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-9c9ba4861f14e38f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "33cdadf54638e20d5bdc6bd5185fef2c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "33cdadf54638e20d5bdc6bd5185fef2c", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 04:53:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "178845e5-cfc1-4637-aa0b-1288949d7a87", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "0df97204-f468-4ec4-9c8d-7c1cd293addb", + "x-ms-routing-request-id": "WESTUS2:20221026T045337Z:178845e5-cfc1-4637-aa0b-1288949d7a87", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-7a2c912cb1a90718-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3cea43bef37bb0221eebcff0f2735c54", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "3cea43bef37bb0221eebcff0f2735c54", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 04:54:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "bb90e557-34e8-433c-921f-00c01c21ed55", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "795d62be-91bd-4155-9805-cfacbfa197c3", + "x-ms-routing-request-id": "WESTUS2:20221026T045409Z:bb90e557-34e8-433c-921f-00c01c21ed55", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-f492c007a1a313db-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6a7d1d541854297474c8adce6b363542", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "6a7d1d541854297474c8adce6b363542", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 04:54:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "febb0f01-d620-42f0-aec6-654c04e661be", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "eaee4f53-32e9-499a-807a-1f4698e07615", + "x-ms-routing-request-id": "WESTUS2:20221026T045441Z:febb0f01-d620-42f0-aec6-654c04e661be", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/ce20bfd7-4867-400c-8274-a566f9bddb8c", - "name": "ce20bfd7-4867-400c-8274-a566f9bddb8c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-f14db1bbf70d0b38-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3f58caaad538019b8b1c144d771cf0e8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "3f58caaad538019b8b1c144d771cf0e8", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 04:55:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "9186193f-e6e2-4abb-8de1-1fab506b3c6f", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "903caa08-8d12-48f7-a723-a30486d613ba", + "x-ms-routing-request-id": "WESTUS2:20221026T045513Z:9186193f-e6e2-4abb-8de1-1fab506b3c6f", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-992719c42c88471e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "fa81178085e1a5d8cfc0c8b2455345e8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "fa81178085e1a5d8cfc0c8b2455345e8", + "Content-Length": "352", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 04:55:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "11f04379-3430-4b08-bfa3-7d4e73d4e30f", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "8fd13bf8-d07a-4a60-a69e-c93408401642", + "x-ms-routing-request-id": "WESTUS2:20221026T045545Z:11f04379-3430-4b08-bfa3-7d4e73d4e30f", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/f10e9915-890b-4092-9cc6-f15e2bfbc1a0", + "name": "f10e9915-890b-4092-9cc6-f15e2bfbc1a0", "status": "Succeeded", "startTime": null, "endTime": null, @@ -1498,43 +1936,43 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-523/providers/Microsoft.Cache/redis/RedisBegin6088?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-1502/providers/Microsoft.Cache/redis/RedisBegin8768?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dda8aebacc03a84faa9d4cea9dc6e995-9523dfc03cf25848-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "91ece5319deae0b12d8650ed906b03c9", + "traceparent": "00-b87bf353f41bfacb042cfb94619f4333-9a518818caf80658-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "28458cb51c1a7e1b817bde370326b258", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "91ece5319deae0b12d8650ed906b03c9", - "Content-Length": "707", + "client-request-id": "28458cb51c1a7e1b817bde370326b258", + "Content-Length": "705", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 25 Aug 2022 09:55:33 GMT", + "Date": "Wed, 26 Oct 2022 04:55:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b79f9efa-3a92-466d-bb8c-c896abe3609f", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-request-id": "660ab525-b2f4-4e24-b289-730c2d0be008", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T095534Z:b79f9efa-3a92-466d-bb8c-c896abe3609f", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "860f66b5-7a4f-4335-b7c1-6876b09ed0ef", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "fae54f3c-dd2b-4284-b776-03c211c22a45", + "x-ms-routing-request-id": "WESTUS2:20221026T045546Z:860f66b5-7a4f-4335-b7c1-6876b09ed0ef", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-523/providers/Microsoft.Cache/Redis/RedisBegin6088", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-1502/providers/Microsoft.Cache/Redis/RedisBegin8768", "location": "East US", - "name": "RedisBegin6088", + "name": "RedisBegin8768", "type": "Microsoft.Cache/Redis", "tags": {}, "properties": { "provisioningState": "Succeeded", - "redisVersion": "4.0.14", + "redisVersion": "6.0", "sku": { "name": "Basic", "family": "C", @@ -1556,7 +1994,7 @@ "maxmemory-delta": "30" }, "accessKeys": null, - "hostName": "RedisBegin6088.redis.cache.windows.net", + "hostName": "RedisBegin8768.redis.cache.windows.net", "port": 6379, "sslPort": 6380, "linkedServers": [] @@ -1564,16 +2002,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-523/providers/Microsoft.Cache/redis/RedisBegin6088?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-1502/providers/Microsoft.Cache/redis/RedisBegin8768?api-version=2022-06-01", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "96", "Content-Type": "application/json", - "traceparent": "00-d3c2d784e6f617428c9d4cecdb520b69-5fe3a47fd381ab49-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220825.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c9e72e4aaae276ccfacc6c46f0500852", + "traceparent": "00-3ff81e4f122e15af8b1854d6e36a31b2-152e5400d1140461-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "544ec5d83bb42561f1b270770de9bc38", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -1587,30 +2025,30 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "c9e72e4aaae276ccfacc6c46f0500852", - "Content-Length": "758", + "client-request-id": "544ec5d83bb42561f1b270770de9bc38", + "Content-Length": "756", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 25 Aug 2022 09:55:34 GMT", + "Date": "Wed, 26 Oct 2022 04:55:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "88652ad3-7196-4ac8-896a-df565f4c73ce", + "x-ms-correlation-request-id": "b4020300-1eb6-425d-8491-9f1889ec8ced", "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "41afb0bc-1a3c-4d70-97d5-2b0fb219da2e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T095535Z:88652ad3-7196-4ac8-896a-df565f4c73ce", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "2f7835cc-c6af-4900-a5b1-e61dd20a74bb", + "x-ms-routing-request-id": "WESTUS2:20221026T045546Z:b4020300-1eb6-425d-8491-9f1889ec8ced", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-523/providers/Microsoft.Cache/Redis/RedisBegin6088", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-1502/providers/Microsoft.Cache/Redis/RedisBegin8768", "location": "East US", - "name": "RedisBegin6088", + "name": "RedisBegin8768", "type": "Microsoft.Cache/Redis", "tags": {}, "properties": { "provisioningState": "Succeeded", - "redisVersion": "4.0.14", + "redisVersion": "6.0", "sku": { "name": "Basic", "family": "C", @@ -1634,7 +2072,7 @@ "maxmemory-delta": "30" }, "accessKeys": null, - "hostName": "RedisBegin6088.redis.cache.windows.net", + "hostName": "RedisBegin8768.redis.cache.windows.net", "port": 6379, "sslPort": 6380, "linkedServers": [] @@ -1642,571 +2080,513 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-523/providers/Microsoft.Cache/redis/RedisBegin6088?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-1502/providers/Microsoft.Cache/redis/RedisBegin8768?api-version=2022-06-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-6bbb89cc7f84aa4ab0428f9b943ba79f-dd830391733dd945-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220825.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c9418ba76f0595df7ddca55163831349", + "traceparent": "00-a0217ed980a521fb21ee40ee9d32b227-8663295324f04b51-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7fda6f0ef1047a342b203667aba47198", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "c9418ba76f0595df7ddca55163831349", + "client-request-id": "7fda6f0ef1047a342b203667aba47198", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 09:55:36 GMT", + "Date": "Wed, 26 Oct 2022 04:55:47 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/67da3454-d74f-47e6-94ba-885637f435e5?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/81882b90-92e4-4606-a0ae-9434c6ad0ded?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4ae723ea-b9d3-4fd5-9dee-37d9f49e257f", + "x-ms-correlation-request-id": "55314b53-1532-424a-a1df-2f10cc315fd8", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-request-id": "67da3454-d74f-47e6-94ba-885637f435e5", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T095536Z:4ae723ea-b9d3-4fd5-9dee-37d9f49e257f", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "81882b90-92e4-4606-a0ae-9434c6ad0ded", + "x-ms-routing-request-id": "WESTUS2:20221026T045547Z:55314b53-1532-424a-a1df-2f10cc315fd8", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/67da3454-d74f-47e6-94ba-885637f435e5?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/81882b90-92e4-4606-a0ae-9434c6ad0ded?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6bbb89cc7f84aa4ab0428f9b943ba79f-02b6872da5c5eb4c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0445fd7e3a29dac34e514c06057a1276", + "traceparent": "00-a0217ed980a521fb21ee40ee9d32b227-2bfa855936902786-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "9d69c8103c0ee633f81cbfb69165b757", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "0445fd7e3a29dac34e514c06057a1276", + "client-request-id": "9d69c8103c0ee633f81cbfb69165b757", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 09:55:36 GMT", + "Date": "Wed, 26 Oct 2022 04:55:47 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/67da3454-d74f-47e6-94ba-885637f435e5?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/81882b90-92e4-4606-a0ae-9434c6ad0ded?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4c0d9edb-4f8b-4164-9398-3417613191be", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "2b176561-1f0f-4db6-a173-9413e0bcebb6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T095537Z:4c0d9edb-4f8b-4164-9398-3417613191be", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/67da3454-d74f-47e6-94ba-885637f435e5?api-version=2021-06-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-6bbb89cc7f84aa4ab0428f9b943ba79f-acd13dd265218842-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "47f122b91aa4567f4ebab090d8c16413", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "client-request-id": "47f122b91aa4567f4ebab090d8c16413", - "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 09:55:38 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/67da3454-d74f-47e6-94ba-885637f435e5?api-version=2021-06-01", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e8971b1d-93af-4a19-af5f-08575ce26f83", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-request-id": "2932727b-f12d-4b58-b076-237dbd5019e5", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T095538Z:e8971b1d-93af-4a19-af5f-08575ce26f83", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/67da3454-d74f-47e6-94ba-885637f435e5?api-version=2021-06-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-6bbb89cc7f84aa4ab0428f9b943ba79f-df87efc1b0e8b342-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "66d3c8ec0e3e1b1fe5d19f810537819e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "client-request-id": "66d3c8ec0e3e1b1fe5d19f810537819e", - "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 09:55:39 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/67da3454-d74f-47e6-94ba-885637f435e5?api-version=2021-06-01", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ebd63b04-ff14-4d22-a7ea-6040b4940799", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-request-id": "568710c2-f94f-40c1-b6c3-8f8f139b0163", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T095540Z:ebd63b04-ff14-4d22-a7ea-6040b4940799", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "81f2ca5d-8717-41a9-b806-74473f84c9a3", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "5811af92-d1ca-4349-9eac-ee01a773b866", + "x-ms-routing-request-id": "WESTUS2:20221026T045547Z:81f2ca5d-8717-41a9-b806-74473f84c9a3", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/67da3454-d74f-47e6-94ba-885637f435e5?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/81882b90-92e4-4606-a0ae-9434c6ad0ded?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6bbb89cc7f84aa4ab0428f9b943ba79f-9c0528b00209bb42-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0e652163a87963387deeb66f8933028d", + "traceparent": "00-a0217ed980a521fb21ee40ee9d32b227-2f1262fa6abaac33-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "00a5e091ca404618eeca87199882b82e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "0e652163a87963387deeb66f8933028d", + "client-request-id": "00a5e091ca404618eeca87199882b82e", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 09:55:40 GMT", + "Date": "Wed, 26 Oct 2022 04:55:48 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/67da3454-d74f-47e6-94ba-885637f435e5?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/81882b90-92e4-4606-a0ae-9434c6ad0ded?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "46543393-5029-447b-9107-90bd15afa79a", - "x-ms-ratelimit-remaining-subscription-reads": "11962", - "x-ms-request-id": "6f3268e7-080a-42fb-a56b-b48979f2b1eb", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T095541Z:46543393-5029-447b-9107-90bd15afa79a", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "26e7ab08-68d3-4f93-96fd-b27e342b6bf1", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "173d8414-5bde-4074-8fc1-2d092d736556", + "x-ms-routing-request-id": "WESTUS2:20221026T045549Z:26e7ab08-68d3-4f93-96fd-b27e342b6bf1", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/67da3454-d74f-47e6-94ba-885637f435e5?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/81882b90-92e4-4606-a0ae-9434c6ad0ded?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6bbb89cc7f84aa4ab0428f9b943ba79f-1556982f6cc5164d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3d1a38ecaca7aa3803d562d37bfd5116", + "traceparent": "00-a0217ed980a521fb21ee40ee9d32b227-225b70bedb2a6bd6-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e356e4a1d33b83897279df7208cb7e92", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "3d1a38ecaca7aa3803d562d37bfd5116", + "client-request-id": "e356e4a1d33b83897279df7208cb7e92", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 09:55:43 GMT", + "Date": "Wed, 26 Oct 2022 04:55:49 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/67da3454-d74f-47e6-94ba-885637f435e5?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/81882b90-92e4-4606-a0ae-9434c6ad0ded?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a7509b90-08a0-4e7c-b06b-155168e9ed30", - "x-ms-ratelimit-remaining-subscription-reads": "11961", - "x-ms-request-id": "de99bad7-1176-4db5-a645-8516204e51fa", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T095543Z:a7509b90-08a0-4e7c-b06b-155168e9ed30", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "b507eefc-6fe0-4742-9337-32d0df79d153", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "3e8fd34c-ca54-471c-97b9-eae780d068e5", + "x-ms-routing-request-id": "WESTUS2:20221026T045550Z:b507eefc-6fe0-4742-9337-32d0df79d153", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/67da3454-d74f-47e6-94ba-885637f435e5?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/81882b90-92e4-4606-a0ae-9434c6ad0ded?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6bbb89cc7f84aa4ab0428f9b943ba79f-93f27d3164d80843-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b72d1139565b43998f6fe84f57b091b2", + "traceparent": "00-a0217ed980a521fb21ee40ee9d32b227-6392ce86c8c117c8-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e11f00337e564611af22af44b41a4d75", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "b72d1139565b43998f6fe84f57b091b2", + "client-request-id": "e11f00337e564611af22af44b41a4d75", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 09:55:47 GMT", + "Date": "Wed, 26 Oct 2022 04:55:50 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/67da3454-d74f-47e6-94ba-885637f435e5?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/81882b90-92e4-4606-a0ae-9434c6ad0ded?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a08dd338-e580-47db-8d39-f35f70c077db", - "x-ms-ratelimit-remaining-subscription-reads": "11960", - "x-ms-request-id": "cbc41a71-6a50-4a72-890c-5b71115a241e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T095548Z:a08dd338-e580-47db-8d39-f35f70c077db", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "0a2cf406-44fa-4394-9d8b-34d684233c6c", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "76569f1f-5ae0-4a77-9ea9-b11181d5829a", + "x-ms-routing-request-id": "WESTUS2:20221026T045551Z:0a2cf406-44fa-4394-9d8b-34d684233c6c", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/67da3454-d74f-47e6-94ba-885637f435e5?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/81882b90-92e4-4606-a0ae-9434c6ad0ded?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6bbb89cc7f84aa4ab0428f9b943ba79f-3bbaf1557ed11b45-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "cc9411ce441db7f7e8ba0aa34665e880", + "traceparent": "00-a0217ed980a521fb21ee40ee9d32b227-88a783181e5f01cb-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ac149064d40fbd1c57228dc6eba53d22", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "cc9411ce441db7f7e8ba0aa34665e880", + "client-request-id": "ac149064d40fbd1c57228dc6eba53d22", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 09:55:55 GMT", + "Date": "Wed, 26 Oct 2022 04:55:53 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/67da3454-d74f-47e6-94ba-885637f435e5?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/81882b90-92e4-4606-a0ae-9434c6ad0ded?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f71c3e60-08e8-4e92-86e4-4a33b52a055c", - "x-ms-ratelimit-remaining-subscription-reads": "11959", - "x-ms-request-id": "c9d103dd-5c94-4f24-9fb2-44f472288762", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T095556Z:f71c3e60-08e8-4e92-86e4-4a33b52a055c", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "6648c32e-7237-4917-a8ea-cca51ef50d5f", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "b602f4f0-742b-4b4b-bf94-b690c37e1dfa", + "x-ms-routing-request-id": "WESTUS2:20221026T045553Z:6648c32e-7237-4917-a8ea-cca51ef50d5f", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/67da3454-d74f-47e6-94ba-885637f435e5?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/81882b90-92e4-4606-a0ae-9434c6ad0ded?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6bbb89cc7f84aa4ab0428f9b943ba79f-52883ba3e3926d4b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "7835a09d4b0696319ed6ad37c3e85252", + "traceparent": "00-a0217ed980a521fb21ee40ee9d32b227-f0521bdb6e44c5a5-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "97e5f54cd76223d8d31033182444ce58", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "7835a09d4b0696319ed6ad37c3e85252", + "client-request-id": "97e5f54cd76223d8d31033182444ce58", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 09:56:11 GMT", + "Date": "Wed, 26 Oct 2022 04:55:57 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/67da3454-d74f-47e6-94ba-885637f435e5?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/81882b90-92e4-4606-a0ae-9434c6ad0ded?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d419b932-e885-4007-86f1-d03ec7bbe4c6", - "x-ms-ratelimit-remaining-subscription-reads": "11958", - "x-ms-request-id": "52a53174-410b-4ba8-9e54-27e907c250ed", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T095612Z:d419b932-e885-4007-86f1-d03ec7bbe4c6", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "6412f4eb-aa1d-463c-829a-5809219488f8", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "67eac8b7-322b-4697-9be8-57cdadfe336e", + "x-ms-routing-request-id": "WESTUS2:20221026T045557Z:6412f4eb-aa1d-463c-829a-5809219488f8", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/67da3454-d74f-47e6-94ba-885637f435e5?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/81882b90-92e4-4606-a0ae-9434c6ad0ded?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6bbb89cc7f84aa4ab0428f9b943ba79f-ef9e10ad7f123a4b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6904af448468f4f81976cea14bf5fc2a", + "traceparent": "00-a0217ed980a521fb21ee40ee9d32b227-12f1b3b9b31c949f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "780e692bd1b65e83e4628933f04a5b0a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "6904af448468f4f81976cea14bf5fc2a", + "client-request-id": "780e692bd1b65e83e4628933f04a5b0a", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 09:56:44 GMT", + "Date": "Wed, 26 Oct 2022 04:56:05 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/67da3454-d74f-47e6-94ba-885637f435e5?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/81882b90-92e4-4606-a0ae-9434c6ad0ded?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "efa387e4-3cbb-4dc7-967e-bea2f3716f44", - "x-ms-ratelimit-remaining-subscription-reads": "11957", - "x-ms-request-id": "fdf14a10-f960-4f8a-aee1-d6f889d6f992", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T095645Z:efa387e4-3cbb-4dc7-967e-bea2f3716f44", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "db4ff140-edea-4e15-be6b-ba81102c3183", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "542a4387-01c3-4cb9-8429-bd18deb70984", + "x-ms-routing-request-id": "WESTUS2:20221026T045605Z:db4ff140-edea-4e15-be6b-ba81102c3183", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/67da3454-d74f-47e6-94ba-885637f435e5?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/81882b90-92e4-4606-a0ae-9434c6ad0ded?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6bbb89cc7f84aa4ab0428f9b943ba79f-e349b7c3dd5e424c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b7b16887197a83ace0fe2d4797c0f300", + "traceparent": "00-a0217ed980a521fb21ee40ee9d32b227-a8cf216bf6c54367-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "bef88ce5b5348c12b7f0d9fea0049913", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "b7b16887197a83ace0fe2d4797c0f300", + "client-request-id": "bef88ce5b5348c12b7f0d9fea0049913", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 09:57:16 GMT", + "Date": "Wed, 26 Oct 2022 04:56:21 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/67da3454-d74f-47e6-94ba-885637f435e5?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/81882b90-92e4-4606-a0ae-9434c6ad0ded?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "988a6e0b-4526-4fe8-bb1a-4ffdc95ab0e4", - "x-ms-ratelimit-remaining-subscription-reads": "11956", - "x-ms-request-id": "1aaf2085-c846-4e8c-8ff0-6a7d693045f6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T095717Z:988a6e0b-4526-4fe8-bb1a-4ffdc95ab0e4", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "b0b3e14f-ac10-4e03-b32e-fdeb4522c468", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "c569a2e3-5d76-4659-ace8-f51360ebe241", + "x-ms-routing-request-id": "WESTUS2:20221026T045621Z:b0b3e14f-ac10-4e03-b32e-fdeb4522c468", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/67da3454-d74f-47e6-94ba-885637f435e5?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/81882b90-92e4-4606-a0ae-9434c6ad0ded?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6bbb89cc7f84aa4ab0428f9b943ba79f-faea438d68a0e64c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "965fb8677e601817a7415e8f7c8f4ba8", + "traceparent": "00-a0217ed980a521fb21ee40ee9d32b227-2fb0372860da7c01-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "819b3553c4967a6c7287b3004da43289", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "965fb8677e601817a7415e8f7c8f4ba8", + "client-request-id": "819b3553c4967a6c7287b3004da43289", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 09:57:48 GMT", + "Date": "Wed, 26 Oct 2022 04:56:53 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/67da3454-d74f-47e6-94ba-885637f435e5?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/81882b90-92e4-4606-a0ae-9434c6ad0ded?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f84cb266-57b5-40fb-939a-79d4f338a3b1", - "x-ms-ratelimit-remaining-subscription-reads": "11955", - "x-ms-request-id": "2006cc43-43c9-4aa2-b849-7bf0ad0ceb23", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T095749Z:f84cb266-57b5-40fb-939a-79d4f338a3b1", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "1c1cef31-b1b0-45eb-a0c5-007cce1baa8e", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "9acf2d81-dae0-4fc8-81b2-bfe54c3b31f0", + "x-ms-routing-request-id": "WESTUS2:20221026T045653Z:1c1cef31-b1b0-45eb-a0c5-007cce1baa8e", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/67da3454-d74f-47e6-94ba-885637f435e5?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/81882b90-92e4-4606-a0ae-9434c6ad0ded?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6bbb89cc7f84aa4ab0428f9b943ba79f-7246acba5c4e144b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5bb082d99b362ad80380896a57b15d59", + "traceparent": "00-a0217ed980a521fb21ee40ee9d32b227-7c32e31f8a4283d1-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "973229b40f4b75235781c0c5f884bee0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "5bb082d99b362ad80380896a57b15d59", + "client-request-id": "973229b40f4b75235781c0c5f884bee0", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 09:58:22 GMT", + "Date": "Wed, 26 Oct 2022 04:57:25 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/67da3454-d74f-47e6-94ba-885637f435e5?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/81882b90-92e4-4606-a0ae-9434c6ad0ded?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9e0011fc-810a-47a2-ba9a-25268d57c178", - "x-ms-ratelimit-remaining-subscription-reads": "11954", - "x-ms-request-id": "1bca8d90-dc2f-4b79-9088-afeb268d86b7", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T095822Z:9e0011fc-810a-47a2-ba9a-25268d57c178", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "1edba9d0-edfc-4d27-84f2-30c764e0e6c3", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "7ea37ec7-abe5-42ef-adf3-ee2bf73394b2", + "x-ms-routing-request-id": "WESTUS2:20221026T045726Z:1edba9d0-edfc-4d27-84f2-30c764e0e6c3", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/67da3454-d74f-47e6-94ba-885637f435e5?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/81882b90-92e4-4606-a0ae-9434c6ad0ded?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6bbb89cc7f84aa4ab0428f9b943ba79f-73dd25c5f4ce1f46-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "933ace82669608c951981039ba1c0650", + "traceparent": "00-a0217ed980a521fb21ee40ee9d32b227-12e4351d0f5ecc98-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "bbdf76c8daae2073207e4cad02113f13", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "933ace82669608c951981039ba1c0650", + "client-request-id": "bbdf76c8daae2073207e4cad02113f13", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 09:58:54 GMT", + "Date": "Wed, 26 Oct 2022 04:57:57 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/67da3454-d74f-47e6-94ba-885637f435e5?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/81882b90-92e4-4606-a0ae-9434c6ad0ded?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7e2479f6-d7de-4074-a907-8f153a220055", - "x-ms-ratelimit-remaining-subscription-reads": "11953", - "x-ms-request-id": "4218bd5c-8585-4681-8019-7a2a307fb375", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T095854Z:7e2479f6-d7de-4074-a907-8f153a220055", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "fb7e137b-5e0c-4083-9014-8cead836c050", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "c60babb2-2209-4842-be0a-941adebf3185", + "x-ms-routing-request-id": "WESTUS2:20221026T045758Z:fb7e137b-5e0c-4083-9014-8cead836c050", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/67da3454-d74f-47e6-94ba-885637f435e5?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/81882b90-92e4-4606-a0ae-9434c6ad0ded?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6bbb89cc7f84aa4ab0428f9b943ba79f-e609f90214b75849-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "146d84b3980fccc9df3592dff4acc1f5", + "traceparent": "00-a0217ed980a521fb21ee40ee9d32b227-0ea133bbb9319b54-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "774a4fbe01d143c71225291504a681ee", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "146d84b3980fccc9df3592dff4acc1f5", + "client-request-id": "774a4fbe01d143c71225291504a681ee", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 09:59:26 GMT", + "Date": "Wed, 26 Oct 2022 04:58:29 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/67da3454-d74f-47e6-94ba-885637f435e5?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/81882b90-92e4-4606-a0ae-9434c6ad0ded?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "535c4618-7e08-4356-8659-6aa75135ce70", - "x-ms-ratelimit-remaining-subscription-reads": "11952", - "x-ms-request-id": "7f07b020-a4fa-4181-94cf-e8ee21ad88ce", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T095926Z:535c4618-7e08-4356-8659-6aa75135ce70", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "20ef8c74-5d1d-4b9f-890a-57b2c62c9b19", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "041375c1-0519-426b-9fdb-f7c06562578f", + "x-ms-routing-request-id": "WESTUS2:20221026T045830Z:20ef8c74-5d1d-4b9f-890a-57b2c62c9b19", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/67da3454-d74f-47e6-94ba-885637f435e5?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/81882b90-92e4-4606-a0ae-9434c6ad0ded?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6bbb89cc7f84aa4ab0428f9b943ba79f-ab720925069d5646-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ae0d04e4b7557312b8a8099d8a9f6fe7", + "traceparent": "00-a0217ed980a521fb21ee40ee9d32b227-ecd79a17c5c40ec6-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d738d2c977c4dadab61177cdc3757245", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "ae0d04e4b7557312b8a8099d8a9f6fe7", + "client-request-id": "d738d2c977c4dadab61177cdc3757245", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 09:59:59 GMT", + "Date": "Wed, 26 Oct 2022 04:59:02 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/67da3454-d74f-47e6-94ba-885637f435e5?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/81882b90-92e4-4606-a0ae-9434c6ad0ded?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "918c266f-64ae-4a65-bf49-3f09ff238ac4", - "x-ms-ratelimit-remaining-subscription-reads": "11951", - "x-ms-request-id": "3af3a67b-9b3a-4ae7-a608-d176fdae36ef", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T095959Z:918c266f-64ae-4a65-bf49-3f09ff238ac4", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "f2af655c-3982-4428-84c2-d224c1387a8f", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "7f3bf9f7-3b88-4c66-b23a-a6c586f5f4e0", + "x-ms-routing-request-id": "WESTUS2:20221026T045902Z:f2af655c-3982-4428-84c2-d224c1387a8f", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/67da3454-d74f-47e6-94ba-885637f435e5?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/81882b90-92e4-4606-a0ae-9434c6ad0ded?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6bbb89cc7f84aa4ab0428f9b943ba79f-9489f874c9530143-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d2b739794844ea4a046eb361d3ea13a5", + "traceparent": "00-a0217ed980a521fb21ee40ee9d32b227-e81e61355ba34655-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a907ad42463ac60fae9ba988b05e1c7a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "d2b739794844ea4a046eb361d3ea13a5", + "client-request-id": "a907ad42463ac60fae9ba988b05e1c7a", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 10:00:31 GMT", + "Date": "Wed, 26 Oct 2022 04:59:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "45f2d376-c5d8-4eb0-8b2a-05b271836bb6", - "x-ms-ratelimit-remaining-subscription-reads": "11950", - "x-ms-request-id": "548e7265-200f-460f-8276-6bc0d1bcde00", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T100032Z:45f2d376-c5d8-4eb0-8b2a-05b271836bb6", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "a3813b0d-2d0e-4269-954e-2feca9cd9a90", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "5d97771e-ccc0-40c7-8ea7-c57e56454713", + "x-ms-routing-request-id": "WESTUS2:20221026T045934Z:a3813b0d-2d0e-4269-954e-2feca9cd9a90", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-523/providers/Microsoft.Cache/redis/RedisBegin6088?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-1502/providers/Microsoft.Cache/redis/RedisBegin8768?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-80c35af949caa143a660d5c6557d684d-6cf9cbb2a403af4e-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220825.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b6541ad7580ffbfa72f95b678e2b4140", + "traceparent": "00-165c33665d369ecfa241c5a4a3f85372-0db7be1f7376d7e4-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "30e45dfc67d9474e746fc1bf8af97f9c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "218", + "client-request-id": "30e45dfc67d9474e746fc1bf8af97f9c", + "Content-Length": "188", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 25 Aug 2022 10:00:32 GMT", + "Date": "Wed, 26 Oct 2022 04:59:34 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a7036ee6-cee1-418f-aa50-5b1504f473d1", - "x-ms-failure-cause": "gateway", - "x-ms-request-id": "a7036ee6-cee1-418f-aa50-5b1504f473d1", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T100032Z:a7036ee6-cee1-418f-aa50-5b1504f473d1" + "x-ms-correlation-request-id": "9e0e6781-4108-4463-bebb-5061da966090", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "33f5d8d4-78cd-4f5f-a275-c72b122f6c3c", + "x-ms-routing-request-id": "WESTUS2:20221026T045934Z:9e0e6781-4108-4463-bebb-5061da966090", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.Cache/Redis/RedisBegin6088\u0027 under resource group \u0027testRG-523\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "A requested resource could not be found. It may already have been deleted.\r\nRequestID=33f5d8d4-78cd-4f5f-a275-c72b122f6c3c", + "target": null } } } ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "710025924", + "RandomSeed": "202264291", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + "SUBSCRIPTION_ID": "3919658b-68ae-4509-8c17-6a2238340ae7" } } diff --git a/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/CreateUpdateDeleteFunctionalTests/CreateUpdateDeleteTestAsync.json b/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/CreateUpdateDeleteFunctionalTests/CreateUpdateDeleteTestAsync.json index 35b28f9dba27..d62a8ae00c13 100644 --- a/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/CreateUpdateDeleteFunctionalTests/CreateUpdateDeleteTestAsync.json +++ b/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/CreateUpdateDeleteFunctionalTests/CreateUpdateDeleteTestAsync.json @@ -1,52 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ae953b493a424747aab4ad3df3814383-47563fbf2574a246-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6e6c2af3a2b39b43ba430b88494a4b95", + "traceparent": "00-5e997365a8fb8fe7abf298f17813ec36-9c80d67509ed22e2-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b298c8a164310c95dfd063de2faa9072", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "747", + "Content-Length": "405", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 25 Aug 2022 09:17:33 GMT", + "Date": "Wed, 26 Oct 2022 04:59:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "65b2abb3-2aba-4a40-af72-c02b6c88a65e", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "65b2abb3-2aba-4a40-af72-c02b6c88a65e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T091733Z:65b2abb3-2aba-4a40-af72-c02b6c88a65e" + "x-ms-correlation-request-id": "21cb42a4-0c9f-482e-863b-87365c661852", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "21cb42a4-0c9f-482e-863b-87365c661852", + "x-ms-routing-request-id": "WESTUS2:20221026T045937Z:21cb42a4-0c9f-482e-863b-87365c661852" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7", "authorizationSource": "RoleBased", "managedByTenants": [], - "tags": { - "TagKey-9823": "TagValue-566", - "TagKey-3481": "TagValue-320", - "TagKey-4926": "TagValue-1187", - "TagKey-751": "TagValue-3921", - "TagKey-1866": "TagValue-8559", - "TagKey-3094": "TagValue-9190", - "TagKey-2449": "TagValue-9", - "TagKey-8379": "TagValue-164", - "TagKey-7470": "TagValue-2205", - "TagKey-4236": "TagValue-3698", - "TagKey-5316": "TagValue-2725" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "subscriptionId": "3919658b-68ae-4509-8c17-6a2238340ae7", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "displayName": "CacheTeam - Austin Tolani", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -56,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRG-2294?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/testRG-2966?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "43", "Content-Type": "application/json", - "traceparent": "00-bf897a5de5f1ba4c9c8702f39fef1091-1aa55bfa02b20846-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "8691592da217c9833a4f94c7a623724c", + "traceparent": "00-cd0bad5321cc636517058dfffe57c431-d94c7aba326df6ff-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "af140a1947d50e5f43b4f8224d517ec5", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -79,19 +66,19 @@ "Cache-Control": "no-cache", "Content-Length": "241", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 25 Aug 2022 09:17:36 GMT", + "Date": "Wed, 26 Oct 2022 04:59:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "87477afc-763c-489a-818f-5776b6e935b7", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "87477afc-763c-489a-818f-5776b6e935b7", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T091737Z:87477afc-763c-489a-818f-5776b6e935b7" + "x-ms-correlation-request-id": "47fa17f1-2226-4580-a9bf-30949214124e", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "47fa17f1-2226-4580-a9bf-30949214124e", + "x-ms-routing-request-id": "WESTUS2:20221026T045938Z:47fa17f1-2226-4580-a9bf-30949214124e" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-2294", - "name": "testRG-2294", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-2966", + "name": "testRG-2966", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "tags": { @@ -103,16 +90,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-2294/providers/Microsoft.Cache/redis/RedisBegin742?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-2966/providers/Microsoft.Cache/redis/RedisBegin8372?api-version=2022-06-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "85", "Content-Type": "application/json", - "traceparent": "00-bcdd274002a79b49a0ee0ff48cc5d951-ee5993f98586c84a-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220825.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3eacdc919f4bcb487e2ab11f307115cf", + "traceparent": "00-e353da785b11b5b84804d4e4bab55241-2367c8bcf71f1dbd-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "80fa26f0b56546652a6d2dc896ad7803", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -127,33 +114,33 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "3eacdc919f4bcb487e2ab11f307115cf", + "client-request-id": "80fa26f0b56546652a6d2dc896ad7803", "Content-Length": "755", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 25 Aug 2022 09:17:44 GMT", + "Date": "Wed, 26 Oct 2022 04:59:41 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-2294/providers/Microsoft.Cache/redis/RedisBegin742?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-2966/providers/Microsoft.Cache/redis/RedisBegin8372?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7a71c12d-ca4a-4a2e-a5c7-128a1df1f827", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T091744Z:7a71c12d-ca4a-4a2e-a5c7-128a1df1f827", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "ce25af62-e2f8-4326-ad77-eef19dfd6569", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-request-id": "064047fb-d5e0-4533-8498-b169b1798be8", + "x-ms-routing-request-id": "WESTUS2:20221026T045941Z:ce25af62-e2f8-4326-ad77-eef19dfd6569", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-2294/providers/Microsoft.Cache/Redis/RedisBegin742", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-2966/providers/Microsoft.Cache/Redis/RedisBegin8372", "location": "East US", - "name": "RedisBegin742", + "name": "RedisBegin8372", "type": "Microsoft.Cache/Redis", "tags": {}, "properties": { "provisioningState": "Creating", - "redisVersion": "4.0.14", + "redisVersion": "6.0", "sku": { "name": "Basic", "family": "C", @@ -178,7 +165,7 @@ "primaryKey": "Sanitized", "secondaryKey": "Sanitized" }, - "hostName": "RedisBegin742.redis.cache.windows.net", + "hostName": "RedisBegin8372.redis.cache.windows.net", "port": 6379, "sslPort": 6380, "linkedServers": [] @@ -186,38 +173,79 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e353da785b11b5b84804d4e4bab55241-d69918dbaae69fe6-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "69b913182c7854b4ae68abd93146ac06", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "69b913182c7854b4ae68abd93146ac06", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 04:59:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "97e3226f-d4dc-43cc-8a1d-3940779af28d", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "35392e68-fbb8-4a89-b959-bb02e0b207c3", + "x-ms-routing-request-id": "WESTUS2:20221026T045941Z:97e3226f-d4dc-43cc-8a1d-3940779af28d", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8", + "name": "064047fb-d5e0-4533-8498-b169b1798be8", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bcdd274002a79b49a0ee0ff48cc5d951-77b39934df40e645-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6eb9fd3b2ee9bae248ba9978d1aa09dd", + "traceparent": "00-e353da785b11b5b84804d4e4bab55241-05ce95ac50ab1280-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "56011e80a4f825d8a5c1db7605c95c98", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "6eb9fd3b2ee9bae248ba9978d1aa09dd", + "client-request-id": "56011e80a4f825d8a5c1db7605c95c98", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:17:44 GMT", + "Date": "Wed, 26 Oct 2022 04:59:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fe1c48d9-1368-421c-b164-ff3eddaae3d8", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "837a801a-cf7c-4ebd-b470-95fc04e432a2", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T091745Z:fe1c48d9-1368-421c-b164-ff3eddaae3d8", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "533b7d46-22a1-4059-9c0e-51d6a0dd2b9c", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "6373d091-eb85-4433-8fe6-f687cda2a4d2", + "x-ms-routing-request-id": "WESTUS2:20221026T045942Z:533b7d46-22a1-4059-9c0e-51d6a0dd2b9c", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", - "name": "a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8", + "name": "064047fb-d5e0-4533-8498-b169b1798be8", "status": "InProgress", "startTime": null, "endTime": null, @@ -227,38 +255,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bcdd274002a79b49a0ee0ff48cc5d951-69aac4f565cafe47-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "dd65f77e1ed5b59a54c39ad14c98f769", + "traceparent": "00-e353da785b11b5b84804d4e4bab55241-c375868b1de78c45-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "83b049ee0ef31f8b463173da20a7075d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "dd65f77e1ed5b59a54c39ad14c98f769", + "client-request-id": "83b049ee0ef31f8b463173da20a7075d", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:17:46 GMT", + "Date": "Wed, 26 Oct 2022 04:59:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f7907d0b-95af-4014-bf36-1dc10db80b2e", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "5f871e8d-d38d-4785-9f7b-604a8f74f279", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T091746Z:f7907d0b-95af-4014-bf36-1dc10db80b2e", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "e1e8120b-fa55-404a-a7f0-048483a6fc15", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "d287788b-ae36-430e-9026-354554cf95d6", + "x-ms-routing-request-id": "WESTUS2:20221026T045943Z:e1e8120b-fa55-404a-a7f0-048483a6fc15", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", - "name": "a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8", + "name": "064047fb-d5e0-4533-8498-b169b1798be8", "status": "InProgress", "startTime": null, "endTime": null, @@ -268,38 +296,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bcdd274002a79b49a0ee0ff48cc5d951-d2d315e88a58c04c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "32e41809a6b811e663e2e5f6431017fa", + "traceparent": "00-e353da785b11b5b84804d4e4bab55241-7f71d66c87d2b53f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "cb1ba942298f73eb3a94c3b7503e4fe4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "32e41809a6b811e663e2e5f6431017fa", + "client-request-id": "cb1ba942298f73eb3a94c3b7503e4fe4", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:17:47 GMT", + "Date": "Wed, 26 Oct 2022 04:59:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "abb5c35f-7446-4e26-8fff-1fa9db93e3ff", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "7f7f563d-1d1f-4b5a-92d3-0200280cfad0", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T091747Z:abb5c35f-7446-4e26-8fff-1fa9db93e3ff", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "d231dc97-04df-4e3e-9fe5-0f2c73485ad6", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "371498f0-84d8-4f4f-ba63-238264821a38", + "x-ms-routing-request-id": "WESTUS2:20221026T045945Z:d231dc97-04df-4e3e-9fe5-0f2c73485ad6", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", - "name": "a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8", + "name": "064047fb-d5e0-4533-8498-b169b1798be8", "status": "InProgress", "startTime": null, "endTime": null, @@ -309,38 +337,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bcdd274002a79b49a0ee0ff48cc5d951-170fee998aeede4e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "dc30746f43ae1dc362041a2594106db0", + "traceparent": "00-e353da785b11b5b84804d4e4bab55241-19741de1f128c889-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e8eb120c2895711392e210c731fe05fe", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "dc30746f43ae1dc362041a2594106db0", + "client-request-id": "e8eb120c2895711392e210c731fe05fe", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:17:48 GMT", + "Date": "Wed, 26 Oct 2022 04:59:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7f68848a-ff60-4171-871f-331b8d3c40bb", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "fb41a247-eaab-4ebc-b8cc-0ae23c7e2b3a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T091749Z:7f68848a-ff60-4171-871f-331b8d3c40bb", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "71d0ff2c-e32c-4eae-9f67-b47f33336766", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "17ac4146-c08c-431d-b5e9-3637eaf067f0", + "x-ms-routing-request-id": "WESTUS2:20221026T045947Z:71d0ff2c-e32c-4eae-9f67-b47f33336766", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", - "name": "a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8", + "name": "064047fb-d5e0-4533-8498-b169b1798be8", "status": "InProgress", "startTime": null, "endTime": null, @@ -350,38 +378,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bcdd274002a79b49a0ee0ff48cc5d951-17069331f8895d49-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b96e2fc3d6c5d825115379f238a37144", + "traceparent": "00-e353da785b11b5b84804d4e4bab55241-11a637362898521c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5b337eb990aec5085d3c495e4bd4ce08", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "b96e2fc3d6c5d825115379f238a37144", + "client-request-id": "5b337eb990aec5085d3c495e4bd4ce08", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:17:50 GMT", + "Date": "Wed, 26 Oct 2022 04:59:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d4e43556-8a4e-4364-89d7-c4f35fd7705a", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "f60a9899-f551-4b86-ab59-a57a6ad64904", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T091751Z:d4e43556-8a4e-4364-89d7-c4f35fd7705a", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "8a021472-0005-4795-8c18-14718f42fc57", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "769c4b4c-da60-4115-9414-8904cf2ec1e2", + "x-ms-routing-request-id": "WESTUS2:20221026T045951Z:8a021472-0005-4795-8c18-14718f42fc57", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", - "name": "a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8", + "name": "064047fb-d5e0-4533-8498-b169b1798be8", "status": "InProgress", "startTime": null, "endTime": null, @@ -391,38 +419,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bcdd274002a79b49a0ee0ff48cc5d951-6c2c8cc957bc644d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d7629fac1a68c6ba54c7d0b48cc07d53", + "traceparent": "00-e353da785b11b5b84804d4e4bab55241-cd02223e2f67c7c3-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0dce8ee11fbb1ac895a938ad1824423b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "d7629fac1a68c6ba54c7d0b48cc07d53", + "client-request-id": "0dce8ee11fbb1ac895a938ad1824423b", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:17:55 GMT", + "Date": "Wed, 26 Oct 2022 04:59:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c68dd3ef-e798-4e1c-b826-52135135396e", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "f3bde4b3-4628-4502-90fe-f76b5ce233b6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T091755Z:c68dd3ef-e798-4e1c-b826-52135135396e", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "9252b05c-9c05-49e5-9624-88b50cf23141", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "fecf2083-9270-48ec-9fad-f95080cd7f71", + "x-ms-routing-request-id": "WESTUS2:20221026T045959Z:9252b05c-9c05-49e5-9624-88b50cf23141", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", - "name": "a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8", + "name": "064047fb-d5e0-4533-8498-b169b1798be8", "status": "InProgress", "startTime": null, "endTime": null, @@ -432,38 +460,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bcdd274002a79b49a0ee0ff48cc5d951-2d67a335fbfddc4d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "133335755da198344f58cb5bc9d1e4bf", + "traceparent": "00-e353da785b11b5b84804d4e4bab55241-1fc110c2c397a513-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d2fdc48ff40a7b3609268a59dfb426be", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "133335755da198344f58cb5bc9d1e4bf", + "client-request-id": "d2fdc48ff40a7b3609268a59dfb426be", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:18:03 GMT", + "Date": "Wed, 26 Oct 2022 05:00:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5f7904e2-4819-42ac-beec-6fa277ee30c8", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "0ae75adf-0f0f-4656-b1f9-8009669696e9", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T091804Z:5f7904e2-4819-42ac-beec-6fa277ee30c8", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "2dd4ff69-621a-46fd-893c-b60b9fc8842e", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "bf2857d2-a881-4895-8377-ef098642a9e9", + "x-ms-routing-request-id": "WESTUS2:20221026T050015Z:2dd4ff69-621a-46fd-893c-b60b9fc8842e", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", - "name": "a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8", + "name": "064047fb-d5e0-4533-8498-b169b1798be8", "status": "InProgress", "startTime": null, "endTime": null, @@ -473,38 +501,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bcdd274002a79b49a0ee0ff48cc5d951-9f8b33000228274f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f479d69296ada84774a864fe06714b51", + "traceparent": "00-e353da785b11b5b84804d4e4bab55241-519b2e4470063a42-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a3e50813f7309943b519c504575bac39", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "f479d69296ada84774a864fe06714b51", + "client-request-id": "a3e50813f7309943b519c504575bac39", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:18:19 GMT", + "Date": "Wed, 26 Oct 2022 05:00:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6686acee-e325-4fc3-bd32-768229dc7897", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "c88f8d41-ed4e-4248-876b-f9f65f214d53", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T091820Z:6686acee-e325-4fc3-bd32-768229dc7897", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "b6d6e225-1554-46a1-828b-e7dff2715a23", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "a15d31b6-847c-4aec-9961-49f8f9171b9f", + "x-ms-routing-request-id": "WESTUS2:20221026T050047Z:b6d6e225-1554-46a1-828b-e7dff2715a23", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", - "name": "a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8", + "name": "064047fb-d5e0-4533-8498-b169b1798be8", "status": "InProgress", "startTime": null, "endTime": null, @@ -514,38 +542,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bcdd274002a79b49a0ee0ff48cc5d951-f54659a00339ef42-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "037c26d65e704ea26bca88104e5ffd82", + "traceparent": "00-e353da785b11b5b84804d4e4bab55241-9dfcd0f130c5eeb5-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "86cf0dfafcd6edfd57520394956f3be1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "037c26d65e704ea26bca88104e5ffd82", + "client-request-id": "86cf0dfafcd6edfd57520394956f3be1", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:18:52 GMT", + "Date": "Wed, 26 Oct 2022 05:01:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d3c2fcaf-0e1c-4493-a312-11d2fece5602", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "5aec20bb-856f-4127-abf5-bf6461538a14", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T091852Z:d3c2fcaf-0e1c-4493-a312-11d2fece5602", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "9014d92f-1df5-49bd-b4a3-f0f791a3fddb", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "832bb562-79ea-440d-bd25-f91f9c80e7a3", + "x-ms-routing-request-id": "WESTUS2:20221026T050119Z:9014d92f-1df5-49bd-b4a3-f0f791a3fddb", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", - "name": "a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8", + "name": "064047fb-d5e0-4533-8498-b169b1798be8", "status": "InProgress", "startTime": null, "endTime": null, @@ -555,38 +583,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bcdd274002a79b49a0ee0ff48cc5d951-d50a51a1636efb4a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b62210e28846dfa5ee8a9ef8f83591de", + "traceparent": "00-e353da785b11b5b84804d4e4bab55241-9dca5204c53d940a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0f997a839f3e970a81641cf12e3223ae", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "b62210e28846dfa5ee8a9ef8f83591de", + "client-request-id": "0f997a839f3e970a81641cf12e3223ae", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:19:24 GMT", + "Date": "Wed, 26 Oct 2022 05:01:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1015332a-2672-43b4-a142-e5b767b4b0de", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "e6eae4fc-c77a-4734-8e80-5d8413178dec", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T091925Z:1015332a-2672-43b4-a142-e5b767b4b0de", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "882af606-a6e0-4f41-a113-e1768cd4701d", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "36a2c9c1-2150-47d1-b8e5-eb9a9f8e7636", + "x-ms-routing-request-id": "WESTUS2:20221026T050151Z:882af606-a6e0-4f41-a113-e1768cd4701d", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", - "name": "a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8", + "name": "064047fb-d5e0-4533-8498-b169b1798be8", "status": "InProgress", "startTime": null, "endTime": null, @@ -596,38 +624,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bcdd274002a79b49a0ee0ff48cc5d951-4fc0a792efe91440-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a2847a0ce154334e332b89e30e375a15", + "traceparent": "00-e353da785b11b5b84804d4e4bab55241-93a2e0ea5f5d2027-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d15e50799fe416e70bf84bddf3ae0446", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "a2847a0ce154334e332b89e30e375a15", + "client-request-id": "d15e50799fe416e70bf84bddf3ae0446", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:19:56 GMT", + "Date": "Wed, 26 Oct 2022 05:02:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "83b3cc2c-f779-42e2-81f5-e280e7a4c4c6", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "33adbd53-8064-4211-b500-89bf1456d53e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T091957Z:83b3cc2c-f779-42e2-81f5-e280e7a4c4c6", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "176df2dd-653f-446e-8ac9-e40fd35b9417", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "8e7a1b99-9dff-47f8-b983-9c5b1198fa08", + "x-ms-routing-request-id": "WESTUS2:20221026T050223Z:176df2dd-653f-446e-8ac9-e40fd35b9417", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", - "name": "a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8", + "name": "064047fb-d5e0-4533-8498-b169b1798be8", "status": "InProgress", "startTime": null, "endTime": null, @@ -637,38 +665,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bcdd274002a79b49a0ee0ff48cc5d951-cec8a4106ee19040-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f61be2ab954e4d0a819d15e5bfaa5535", + "traceparent": "00-e353da785b11b5b84804d4e4bab55241-210e170f20b557d9-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "dd81e4de9dc15bfb03380472e00cbf24", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "f61be2ab954e4d0a819d15e5bfaa5535", + "client-request-id": "dd81e4de9dc15bfb03380472e00cbf24", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:20:29 GMT", + "Date": "Wed, 26 Oct 2022 05:02:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "981ad995-5e5f-4b36-a85f-9d095f95ce51", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "61afce7f-bb3e-4498-98a5-daf7571759dc", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T092030Z:981ad995-5e5f-4b36-a85f-9d095f95ce51", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "48f38b7d-b536-4dc1-aabb-753018b8d314", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "cf9695e8-729d-4353-93bb-d26991c1a9d4", + "x-ms-routing-request-id": "WESTUS2:20221026T050256Z:48f38b7d-b536-4dc1-aabb-753018b8d314", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", - "name": "a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8", + "name": "064047fb-d5e0-4533-8498-b169b1798be8", "status": "InProgress", "startTime": null, "endTime": null, @@ -678,38 +706,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bcdd274002a79b49a0ee0ff48cc5d951-69dabaa6a5c6414d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d403a9385ada012dc2ee821bfec1d0b6", + "traceparent": "00-e353da785b11b5b84804d4e4bab55241-de7dc40293c4b72d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "441b552f6910e3fc93820445532ca3d3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "d403a9385ada012dc2ee821bfec1d0b6", + "client-request-id": "441b552f6910e3fc93820445532ca3d3", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:21:01 GMT", + "Date": "Wed, 26 Oct 2022 05:03:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2d723ad7-2040-4639-aed6-b5d973c22f1e", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "f4490aa5-14fa-4b98-b57c-443ca28ad8a8", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T092102Z:2d723ad7-2040-4639-aed6-b5d973c22f1e", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "2e26767a-81a5-4799-b017-65e1c8f5a335", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "b6eb2b30-7dd2-488c-93f3-7b14760956ff", + "x-ms-routing-request-id": "WESTUS2:20221026T050328Z:2e26767a-81a5-4799-b017-65e1c8f5a335", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", - "name": "a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8", + "name": "064047fb-d5e0-4533-8498-b169b1798be8", "status": "InProgress", "startTime": null, "endTime": null, @@ -719,38 +747,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bcdd274002a79b49a0ee0ff48cc5d951-93f105e2c914db4e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "164c89309b1a778f6f3721b7cc697489", + "traceparent": "00-e353da785b11b5b84804d4e4bab55241-e9fbf08c5b5e8c6a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4912d55f45b1dcec5503ceac9b7436fe", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "164c89309b1a778f6f3721b7cc697489", + "client-request-id": "4912d55f45b1dcec5503ceac9b7436fe", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:21:34 GMT", + "Date": "Wed, 26 Oct 2022 05:03:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "32c3b8a8-9feb-4b5e-9833-7e1d6b77be14", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "b6d1a851-d5ff-4300-b64d-61d74eb268e6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T092134Z:32c3b8a8-9feb-4b5e-9833-7e1d6b77be14", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "2e5d7e5a-d686-475a-8602-5365cae9fe40", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "4c53bfff-1e6f-4a52-9439-664413b74d6d", + "x-ms-routing-request-id": "WESTUS2:20221026T050400Z:2e5d7e5a-d686-475a-8602-5365cae9fe40", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", - "name": "a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8", + "name": "064047fb-d5e0-4533-8498-b169b1798be8", "status": "InProgress", "startTime": null, "endTime": null, @@ -760,38 +788,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bcdd274002a79b49a0ee0ff48cc5d951-7942f238fbc48d42-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "64ab54d58534513ab41a346012ef4fbf", + "traceparent": "00-e353da785b11b5b84804d4e4bab55241-d8911c4db2328d52-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "9eae2639c0937436e89d4a3e98b508d6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "64ab54d58534513ab41a346012ef4fbf", + "client-request-id": "9eae2639c0937436e89d4a3e98b508d6", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:22:06 GMT", + "Date": "Wed, 26 Oct 2022 05:04:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8ea38e10-8dbd-4a35-ad0a-3db9f7c1e10a", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "aa4d1607-e584-4230-8960-2bf1a2d850bd", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T092207Z:8ea38e10-8dbd-4a35-ad0a-3db9f7c1e10a", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "4f8dfc66-a21d-4103-9046-415f2621c1e6", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "75646aeb-69ff-41bd-8530-470505c25bd9", + "x-ms-routing-request-id": "WESTUS2:20221026T050432Z:4f8dfc66-a21d-4103-9046-415f2621c1e6", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", - "name": "a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8", + "name": "064047fb-d5e0-4533-8498-b169b1798be8", "status": "InProgress", "startTime": null, "endTime": null, @@ -801,38 +829,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bcdd274002a79b49a0ee0ff48cc5d951-a76508f1f4bcdf47-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "35b55ecc3f5d9d1b198b65a339763558", + "traceparent": "00-e353da785b11b5b84804d4e4bab55241-3bf7cdad463a934d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0b13319575f9e973693eee0c9b4f481e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "35b55ecc3f5d9d1b198b65a339763558", + "client-request-id": "0b13319575f9e973693eee0c9b4f481e", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:22:39 GMT", + "Date": "Wed, 26 Oct 2022 05:05:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "84bf2d44-4920-4651-aab9-97d3f8335ad6", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "d38bf904-2306-4f36-a5db-671d1582a71a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T092239Z:84bf2d44-4920-4651-aab9-97d3f8335ad6", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "b75053b3-f8d3-4df6-90f9-82d6f7b776a0", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "e18baded-9445-4ec4-b614-b23a781d2d99", + "x-ms-routing-request-id": "WESTUS2:20221026T050504Z:b75053b3-f8d3-4df6-90f9-82d6f7b776a0", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", - "name": "a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8", + "name": "064047fb-d5e0-4533-8498-b169b1798be8", "status": "InProgress", "startTime": null, "endTime": null, @@ -842,38 +870,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bcdd274002a79b49a0ee0ff48cc5d951-12daf99c62f35f47-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "aa46f9796c16aa824ffb62ff672e6480", + "traceparent": "00-e353da785b11b5b84804d4e4bab55241-071fd93059da5585-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2c0c054c047e9e409e9e6113fbad43a0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "aa46f9796c16aa824ffb62ff672e6480", + "client-request-id": "2c0c054c047e9e409e9e6113fbad43a0", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:23:11 GMT", + "Date": "Wed, 26 Oct 2022 05:05:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "32a80b67-2304-4b27-a50b-8d1a4c6a281a", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "053ea576-2c6c-45f4-ac35-c38e67487c12", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T092311Z:32a80b67-2304-4b27-a50b-8d1a4c6a281a", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "efc207da-1e9c-4dde-b93f-8a8d9858f871", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "e45b1e2d-bf8b-4972-bb5f-159b294db67f", + "x-ms-routing-request-id": "WESTUS2:20221026T050536Z:efc207da-1e9c-4dde-b93f-8a8d9858f871", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", - "name": "a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8", + "name": "064047fb-d5e0-4533-8498-b169b1798be8", "status": "InProgress", "startTime": null, "endTime": null, @@ -883,38 +911,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bcdd274002a79b49a0ee0ff48cc5d951-42e2312cd8f0c940-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6dea61e83eb4952b390d4aa82097183d", + "traceparent": "00-e353da785b11b5b84804d4e4bab55241-49ac5f064ca59403-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6916f8fb2b61c305b3c43454d229d998", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "6dea61e83eb4952b390d4aa82097183d", + "client-request-id": "6916f8fb2b61c305b3c43454d229d998", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:23:43 GMT", + "Date": "Wed, 26 Oct 2022 05:06:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7d4793b2-3b3a-4425-a416-20b2c04006da", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "0ae12808-2ae9-47be-b01d-0fd57eef302f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T092344Z:7d4793b2-3b3a-4425-a416-20b2c04006da", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "9dea1ae2-97a2-43e2-ac6c-d3534a6f31cc", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "7f142f4a-16f2-42fe-ad11-0fb976661fd4", + "x-ms-routing-request-id": "WESTUS2:20221026T050609Z:9dea1ae2-97a2-43e2-ac6c-d3534a6f31cc", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", - "name": "a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8", + "name": "064047fb-d5e0-4533-8498-b169b1798be8", "status": "InProgress", "startTime": null, "endTime": null, @@ -924,38 +952,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bcdd274002a79b49a0ee0ff48cc5d951-1909fb7f781a3f40-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "18e7dbe5a4a960a8dc0ae661dd1b36eb", + "traceparent": "00-e353da785b11b5b84804d4e4bab55241-a8c44de4e27caf66-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "93f22c55dba89058f0746c5b1360edbb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "18e7dbe5a4a960a8dc0ae661dd1b36eb", + "client-request-id": "93f22c55dba89058f0746c5b1360edbb", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:24:17 GMT", + "Date": "Wed, 26 Oct 2022 05:06:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8bf1ba23-2b4c-4a93-bf0e-814f63b390b0", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "317c519a-6f0b-4963-bf47-3458d1e62860", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T092417Z:8bf1ba23-2b4c-4a93-bf0e-814f63b390b0", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "72edebab-87e5-4aad-949b-ac2ce616c604", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "75dc2fc0-8fba-44b6-b205-668a6ce04c94", + "x-ms-routing-request-id": "WESTUS2:20221026T050641Z:72edebab-87e5-4aad-949b-ac2ce616c604", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", - "name": "a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8", + "name": "064047fb-d5e0-4533-8498-b169b1798be8", "status": "InProgress", "startTime": null, "endTime": null, @@ -965,38 +993,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bcdd274002a79b49a0ee0ff48cc5d951-a51fcc386699fc49-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d7bbe527c78c3ba4cdb0710821d98ab8", + "traceparent": "00-e353da785b11b5b84804d4e4bab55241-603e2891ee1889bd-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a3114efade3821bc004978b9d0ebcc75", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "d7bbe527c78c3ba4cdb0710821d98ab8", + "client-request-id": "a3114efade3821bc004978b9d0ebcc75", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:24:49 GMT", + "Date": "Wed, 26 Oct 2022 05:07:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "da9eaffb-5bf5-4690-8ce1-3834923de33e", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "7ec4f9a0-5a6a-4b85-af32-c73cef0ffeeb", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T092449Z:da9eaffb-5bf5-4690-8ce1-3834923de33e", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "7d23dc4f-bddf-4ece-aa1f-5b388d44a418", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "3ae44c61-bc39-4a1c-b126-f3838da58bc6", + "x-ms-routing-request-id": "WESTUS2:20221026T050713Z:7d23dc4f-bddf-4ece-aa1f-5b388d44a418", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", - "name": "a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8", + "name": "064047fb-d5e0-4533-8498-b169b1798be8", "status": "InProgress", "startTime": null, "endTime": null, @@ -1006,38 +1034,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bcdd274002a79b49a0ee0ff48cc5d951-a20dd76725a28940-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "8b1a24e34c4743d6b88991aa58cab81d", + "traceparent": "00-e353da785b11b5b84804d4e4bab55241-6c15c3f9f97c73f5-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "cfbdc9c4b0bb1ff79f8678edbeaab053", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "8b1a24e34c4743d6b88991aa58cab81d", + "client-request-id": "cfbdc9c4b0bb1ff79f8678edbeaab053", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:25:21 GMT", + "Date": "Wed, 26 Oct 2022 05:07:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "36a2595a-913b-4a49-b811-09a38d1fa0f3", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "d90e3222-90c9-4afd-b084-d0f1c967f5e1", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T092521Z:36a2595a-913b-4a49-b811-09a38d1fa0f3", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "fcd21e2d-18c1-47f2-802c-9448cf3753e4", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "a6d42dcc-f25b-4931-a5c6-85a81626ef2b", + "x-ms-routing-request-id": "WESTUS2:20221026T050745Z:fcd21e2d-18c1-47f2-802c-9448cf3753e4", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", - "name": "a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8", + "name": "064047fb-d5e0-4533-8498-b169b1798be8", "status": "InProgress", "startTime": null, "endTime": null, @@ -1047,38 +1075,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bcdd274002a79b49a0ee0ff48cc5d951-7ef5261f14ca324f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3b815fd740db1eb037ab4af833a03e02", + "traceparent": "00-e353da785b11b5b84804d4e4bab55241-979e9b96afa8090d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "835a79d63617775f6fd0935f629ec005", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "3b815fd740db1eb037ab4af833a03e02", + "client-request-id": "835a79d63617775f6fd0935f629ec005", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:25:53 GMT", + "Date": "Wed, 26 Oct 2022 05:08:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3b86ee08-4a61-4ff8-be0e-94dfd9fc3f21", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "38c66d5d-4057-4619-97ef-8679b02a8d5b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T092554Z:3b86ee08-4a61-4ff8-be0e-94dfd9fc3f21", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "605813a9-0a7d-4d1a-8fa9-60107a5b7e9f", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "ddd0dea5-412c-43ee-93ac-6e530e8e0127", + "x-ms-routing-request-id": "WESTUS2:20221026T050817Z:605813a9-0a7d-4d1a-8fa9-60107a5b7e9f", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", - "name": "a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8", + "name": "064047fb-d5e0-4533-8498-b169b1798be8", "status": "InProgress", "startTime": null, "endTime": null, @@ -1088,38 +1116,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bcdd274002a79b49a0ee0ff48cc5d951-f5bc98cbccc93140-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b87d2e80aa01daa30e771e0335fae303", + "traceparent": "00-e353da785b11b5b84804d4e4bab55241-005280e8b7162eae-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4a96f7a71ea24aff56f103b265ce6255", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "b87d2e80aa01daa30e771e0335fae303", + "client-request-id": "4a96f7a71ea24aff56f103b265ce6255", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:26:26 GMT", + "Date": "Wed, 26 Oct 2022 05:08:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "01f6e3ca-af37-4629-9660-6343204c8b44", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "68facd57-0b4b-4c9c-a17c-d2928dcde1e2", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T092626Z:01f6e3ca-af37-4629-9660-6343204c8b44", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "f4dcdf71-e699-413f-ab10-3d0ec57a87cf", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "f57c390c-3d9c-4a5b-95e4-ee1e03261122", + "x-ms-routing-request-id": "WESTUS2:20221026T050849Z:f4dcdf71-e699-413f-ab10-3d0ec57a87cf", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", - "name": "a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8", + "name": "064047fb-d5e0-4533-8498-b169b1798be8", "status": "InProgress", "startTime": null, "endTime": null, @@ -1129,38 +1157,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bcdd274002a79b49a0ee0ff48cc5d951-8c669cc87d845844-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c23154f74e58a2dc73fb549b01de1018", + "traceparent": "00-e353da785b11b5b84804d4e4bab55241-6131b608ec254d4b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "56e2259949918e5d69465feb1d98bc01", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "c23154f74e58a2dc73fb549b01de1018", + "client-request-id": "56e2259949918e5d69465feb1d98bc01", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:26:58 GMT", + "Date": "Wed, 26 Oct 2022 05:09:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e36f8426-f9d0-47de-80bf-12e490ca4617", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "3341bc12-667f-486e-bc19-37de65489d0b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T092659Z:e36f8426-f9d0-47de-80bf-12e490ca4617", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "80130ead-37ff-4c75-a049-30e8ff7e5d3d", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "a8fd9bf2-439c-44ec-98b4-d9fe724a5ae3", + "x-ms-routing-request-id": "WESTUS2:20221026T050921Z:80130ead-37ff-4c75-a049-30e8ff7e5d3d", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", - "name": "a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8", + "name": "064047fb-d5e0-4533-8498-b169b1798be8", "status": "InProgress", "startTime": null, "endTime": null, @@ -1170,38 +1198,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bcdd274002a79b49a0ee0ff48cc5d951-469621334eb0a648-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "292a8e4a004c2d1bbca62d6322ade83c", + "traceparent": "00-e353da785b11b5b84804d4e4bab55241-7da6c1748df20ba4-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c74573c56513b8b1790f2c2533ac12a0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "292a8e4a004c2d1bbca62d6322ade83c", + "client-request-id": "c74573c56513b8b1790f2c2533ac12a0", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:27:30 GMT", + "Date": "Wed, 26 Oct 2022 05:09:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b4cad94e-bc1a-4e0c-9d6f-a6b7438a73a5", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "49b4d6a4-a0c5-4d77-ab23-b5e42d54b597", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T092731Z:b4cad94e-bc1a-4e0c-9d6f-a6b7438a73a5", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "2ae0b995-66b0-40a1-bccc-e88a57afe81d", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "09acbbcd-766e-4a9c-bb25-25da86222682", + "x-ms-routing-request-id": "WESTUS2:20221026T050954Z:2ae0b995-66b0-40a1-bccc-e88a57afe81d", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", - "name": "a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8", + "name": "064047fb-d5e0-4533-8498-b169b1798be8", "status": "InProgress", "startTime": null, "endTime": null, @@ -1211,38 +1239,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bcdd274002a79b49a0ee0ff48cc5d951-a7d7355c0fc24943-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "df0047c87c6f31a952da44055507d830", + "traceparent": "00-e353da785b11b5b84804d4e4bab55241-cabc80f0417bd324-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3dc63d6d69bc5e749908e15cbe142dbe", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "df0047c87c6f31a952da44055507d830", + "client-request-id": "3dc63d6d69bc5e749908e15cbe142dbe", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:28:02 GMT", + "Date": "Wed, 26 Oct 2022 05:10:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d0a3d9d9-d3ca-4c97-921a-4b29ac00ddff", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "0debba71-897b-4a8b-a7ff-92a9149aa436", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T092803Z:d0a3d9d9-d3ca-4c97-921a-4b29ac00ddff", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "663ff2f6-9c99-4ee1-98e1-035b3b76692c", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "7a2787e8-40d1-4982-9fc3-168b71b3ed31", + "x-ms-routing-request-id": "WESTUS2:20221026T051026Z:663ff2f6-9c99-4ee1-98e1-035b3b76692c", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", - "name": "a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8", + "name": "064047fb-d5e0-4533-8498-b169b1798be8", "status": "InProgress", "startTime": null, "endTime": null, @@ -1252,38 +1280,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bcdd274002a79b49a0ee0ff48cc5d951-9a78b5dde1f72241-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a6b80567b9d0f7b6380305b1217880c6", + "traceparent": "00-e353da785b11b5b84804d4e4bab55241-be0422abb139de20-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f1ec01359b883342742add811c375abc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "a6b80567b9d0f7b6380305b1217880c6", + "client-request-id": "f1ec01359b883342742add811c375abc", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:28:36 GMT", + "Date": "Wed, 26 Oct 2022 05:10:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "14304033-8d4b-4290-9ecf-57c15bd9be1f", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "032c7a15-f208-4f24-8f53-cc0291c9f76c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T092836Z:14304033-8d4b-4290-9ecf-57c15bd9be1f", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "e395d215-db9a-4fdf-879f-049a1a7b2550", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "79713f9e-33f0-4e72-bd7d-1af3bef3eff6", + "x-ms-routing-request-id": "WESTUS2:20221026T051058Z:e395d215-db9a-4fdf-879f-049a1a7b2550", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", - "name": "a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8", + "name": "064047fb-d5e0-4533-8498-b169b1798be8", "status": "InProgress", "startTime": null, "endTime": null, @@ -1293,38 +1321,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bcdd274002a79b49a0ee0ff48cc5d951-abe798b661cec54f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "bad2171330ddcea9e4f8d771bc16d8b4", + "traceparent": "00-e353da785b11b5b84804d4e4bab55241-7b39a53d4aadeca8-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "df7dbe337fd15b45ffe72d0b8454f964", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "bad2171330ddcea9e4f8d771bc16d8b4", + "client-request-id": "df7dbe337fd15b45ffe72d0b8454f964", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:29:08 GMT", + "Date": "Wed, 26 Oct 2022 05:11:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f45139e6-c10d-4cd7-9911-025b21289b90", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "64894cce-b47e-49c3-8a8b-428671f1d81c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T092908Z:f45139e6-c10d-4cd7-9911-025b21289b90", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "f62beb1a-6387-4f2f-a215-fa41d2aeb5d7", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "87cfb597-4f07-4d03-807d-66a20dd001cf", + "x-ms-routing-request-id": "WESTUS2:20221026T051130Z:f62beb1a-6387-4f2f-a215-fa41d2aeb5d7", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", - "name": "a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8", + "name": "064047fb-d5e0-4533-8498-b169b1798be8", "status": "InProgress", "startTime": null, "endTime": null, @@ -1334,38 +1362,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bcdd274002a79b49a0ee0ff48cc5d951-c645f11a31d41c4b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1cfcfdcd41f50f6c9009a66b76f810d9", + "traceparent": "00-e353da785b11b5b84804d4e4bab55241-bd29ac4402924f52-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "31f06de220c0d117fb92c9928cf24162", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "1cfcfdcd41f50f6c9009a66b76f810d9", + "client-request-id": "31f06de220c0d117fb92c9928cf24162", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:29:40 GMT", + "Date": "Wed, 26 Oct 2022 05:12:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "390f5ac0-01fc-4500-b9be-6837b425198c", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "5dfc6bcf-8300-4a98-845e-ba26955a6d44", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T092940Z:390f5ac0-01fc-4500-b9be-6837b425198c", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "2ae2ed5b-bdbf-493c-b765-7fb66870202d", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "a5d272c8-a43a-46c9-ab11-e4531bfa1d96", + "x-ms-routing-request-id": "WESTUS2:20221026T051202Z:2ae2ed5b-bdbf-493c-b765-7fb66870202d", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", - "name": "a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8", + "name": "064047fb-d5e0-4533-8498-b169b1798be8", "status": "InProgress", "startTime": null, "endTime": null, @@ -1375,38 +1403,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bcdd274002a79b49a0ee0ff48cc5d951-a3d049fdf4f1634a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3df17e5a1e3436525ce9c1d7e2443b22", + "traceparent": "00-e353da785b11b5b84804d4e4bab55241-0f22b337db855170-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ff2824ad4d97b6edbc90f2a16e37af1f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "3df17e5a1e3436525ce9c1d7e2443b22", + "client-request-id": "ff2824ad4d97b6edbc90f2a16e37af1f", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:30:13 GMT", + "Date": "Wed, 26 Oct 2022 05:12:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6e8d6a29-51d7-4270-9d8b-9627b99b595b", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "4ff19792-293e-4a8e-818b-2726a5a32248", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T093013Z:6e8d6a29-51d7-4270-9d8b-9627b99b595b", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "cf01da11-4241-4874-a5dc-b1904a4d41a5", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "a0c0398d-afde-47dc-bd0f-c93176040629", + "x-ms-routing-request-id": "WESTUS2:20221026T051234Z:cf01da11-4241-4874-a5dc-b1904a4d41a5", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", - "name": "a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8", + "name": "064047fb-d5e0-4533-8498-b169b1798be8", "status": "InProgress", "startTime": null, "endTime": null, @@ -1416,38 +1444,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bcdd274002a79b49a0ee0ff48cc5d951-31cc96122befe547-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "23e4512b637cd2d0aac32ad38a3d57ec", + "traceparent": "00-e353da785b11b5b84804d4e4bab55241-5d1974f4eebbe41f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ae9f7830294613fca6abe43eb5b2cf0c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "23e4512b637cd2d0aac32ad38a3d57ec", + "client-request-id": "ae9f7830294613fca6abe43eb5b2cf0c", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:30:45 GMT", + "Date": "Wed, 26 Oct 2022 05:13:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d1036949-f920-445c-b0b1-3ae970ddad70", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "3aa0cb57-30cb-4c27-a868-f68c2950a775", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T093045Z:d1036949-f920-445c-b0b1-3ae970ddad70", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "fe101490-c5ca-4573-b3cc-837c437edb74", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "ce351627-8ca7-4765-877f-b98f9fb7f03f", + "x-ms-routing-request-id": "WESTUS2:20221026T051306Z:fe101490-c5ca-4573-b3cc-837c437edb74", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", - "name": "a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8", + "name": "064047fb-d5e0-4533-8498-b169b1798be8", "status": "InProgress", "startTime": null, "endTime": null, @@ -1457,38 +1485,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bcdd274002a79b49a0ee0ff48cc5d951-45224db6eac22146-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3d17fde89a24af80aac5c00b7f952d4b", + "traceparent": "00-e353da785b11b5b84804d4e4bab55241-3289d4ceaf4ee419-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5f5dcba5f92c94cd803a742f2e7663c3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "3d17fde89a24af80aac5c00b7f952d4b", + "client-request-id": "5f5dcba5f92c94cd803a742f2e7663c3", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:31:17 GMT", + "Date": "Wed, 26 Oct 2022 05:13:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fab0e47f-5210-4042-924c-75bdcf189d77", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "45b44407-2bfc-4dec-b4ea-9fd60fe63a95", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T093118Z:fab0e47f-5210-4042-924c-75bdcf189d77", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "c5cf48e9-458d-4b9c-8282-d65b4bb2ef39", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "5200d749-8080-4a69-abff-69c0dfae0e07", + "x-ms-routing-request-id": "WESTUS2:20221026T051339Z:c5cf48e9-458d-4b9c-8282-d65b4bb2ef39", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", - "name": "a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8", + "name": "064047fb-d5e0-4533-8498-b169b1798be8", "status": "InProgress", "startTime": null, "endTime": null, @@ -1498,38 +1526,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bcdd274002a79b49a0ee0ff48cc5d951-92d18baa9ae72540-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "254084ceec13f75dad1f9271f47fac1e", + "traceparent": "00-e353da785b11b5b84804d4e4bab55241-7a74edb91af72229-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1461a9e39353841b271559eb69ae0009", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "254084ceec13f75dad1f9271f47fac1e", + "client-request-id": "1461a9e39353841b271559eb69ae0009", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:31:49 GMT", + "Date": "Wed, 26 Oct 2022 05:14:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5cc4e485-967f-4ce6-bc6c-5fa7c338553b", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-request-id": "6fcef6bd-ec1c-44b6-8ad7-273e6115edd2", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T093150Z:5cc4e485-967f-4ce6-bc6c-5fa7c338553b", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "3b82fc47-964c-485d-8b25-f2bb9d596f12", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "3d5713d9-a460-430d-851f-925c4f2d34e4", + "x-ms-routing-request-id": "WESTUS2:20221026T051411Z:3b82fc47-964c-485d-8b25-f2bb9d596f12", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", - "name": "a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8", + "name": "064047fb-d5e0-4533-8498-b169b1798be8", "status": "InProgress", "startTime": null, "endTime": null, @@ -1539,38 +1567,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bcdd274002a79b49a0ee0ff48cc5d951-cc05e7badf35e54d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e4eed591fd2d90fed03579b7a2c45215", + "traceparent": "00-e353da785b11b5b84804d4e4bab55241-63cf6821594cc815-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a3fbe5c14fd936f2aa0a2d0cb4cde430", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "e4eed591fd2d90fed03579b7a2c45215", + "client-request-id": "a3fbe5c14fd936f2aa0a2d0cb4cde430", "Content-Length": "352", "Content-Type": "application/json", - "Date": "Thu, 25 Aug 2022 09:32:23 GMT", + "Date": "Wed, 26 Oct 2022 05:14:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d8752d3f-1fe7-4e9b-90f1-9020e3fe4187", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "b7ff8024-a75e-4d56-b76c-b9d70f98c440", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T093223Z:d8752d3f-1fe7-4e9b-90f1-9020e3fe4187", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "62548c43-9ac8-4291-8e80-938a353679df", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "b9a81c84-0bdc-4a10-901e-6d3fe6032f31", + "x-ms-routing-request-id": "WESTUS2:20221026T051444Z:62548c43-9ac8-4291-8e80-938a353679df", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", - "name": "a3df05cf-fb5b-4a94-b1fb-0a5fa54f9e01", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/064047fb-d5e0-4533-8498-b169b1798be8", + "name": "064047fb-d5e0-4533-8498-b169b1798be8", "status": "Succeeded", "startTime": null, "endTime": null, @@ -1580,43 +1608,43 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-2294/providers/Microsoft.Cache/redis/RedisBegin742?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-2966/providers/Microsoft.Cache/redis/RedisBegin8372?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bcdd274002a79b49a0ee0ff48cc5d951-ee1448557d638044-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0505de9532fdfcd9a0209004080eba2a", + "traceparent": "00-e353da785b11b5b84804d4e4bab55241-8fdb0e3921ef1539-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0c5b2047ba5112b9afd93717a0e12bd2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "0505de9532fdfcd9a0209004080eba2a", + "client-request-id": "0c5b2047ba5112b9afd93717a0e12bd2", "Content-Length": "705", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 25 Aug 2022 09:32:23 GMT", + "Date": "Wed, 26 Oct 2022 05:14:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "743e6397-90e7-49d3-9dcb-b4749e3cdc5d", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-request-id": "9650095c-04e8-4634-b11f-34e090ff7aec", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T093224Z:743e6397-90e7-49d3-9dcb-b4749e3cdc5d", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "26de8b9d-0e5f-460f-88d8-b07ea3c6f4cc", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "cd993605-2ebc-4368-ab77-35bc69d10b41", + "x-ms-routing-request-id": "WESTUS2:20221026T051445Z:26de8b9d-0e5f-460f-88d8-b07ea3c6f4cc", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-2294/providers/Microsoft.Cache/Redis/RedisBegin742", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-2966/providers/Microsoft.Cache/Redis/RedisBegin8372", "location": "East US", - "name": "RedisBegin742", + "name": "RedisBegin8372", "type": "Microsoft.Cache/Redis", "tags": {}, "properties": { "provisioningState": "Succeeded", - "redisVersion": "4.0.14", + "redisVersion": "6.0", "sku": { "name": "Basic", "family": "C", @@ -1638,7 +1666,7 @@ "maxmemory-delta": "30" }, "accessKeys": null, - "hostName": "RedisBegin742.redis.cache.windows.net", + "hostName": "RedisBegin8372.redis.cache.windows.net", "port": 6379, "sslPort": 6380, "linkedServers": [] @@ -1646,16 +1674,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-2294/providers/Microsoft.Cache/redis/RedisBegin742?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-2966/providers/Microsoft.Cache/redis/RedisBegin8372?api-version=2022-06-01", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "96", "Content-Type": "application/json", - "traceparent": "00-bfb2894ec19bf740bf645523e30075e4-616b6153f46ad94a-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220825.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "aa7aa21848a6d01e86b054de72a654e9", + "traceparent": "00-183e47b7f0124933ed98b904beffc6d1-675d6d5b7314db24-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "486d6a3ac07b93eab72b6948650fcf5a", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -1669,30 +1697,30 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "aa7aa21848a6d01e86b054de72a654e9", + "client-request-id": "486d6a3ac07b93eab72b6948650fcf5a", "Content-Length": "756", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 25 Aug 2022 09:32:24 GMT", + "Date": "Wed, 26 Oct 2022 05:14:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f7b152d4-1b27-4072-b54d-a0603941b9c1", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "fb15aa56-e0fe-40bc-85f3-0bfdeca81135", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T093224Z:f7b152d4-1b27-4072-b54d-a0603941b9c1", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "205091f0-055d-420d-bba6-08a8b9b44b8e", + "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-request-id": "a3f559d1-21f0-4d5c-b381-f501e58a76c2", + "x-ms-routing-request-id": "WESTUS2:20221026T051445Z:205091f0-055d-420d-bba6-08a8b9b44b8e", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-2294/providers/Microsoft.Cache/Redis/RedisBegin742", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-2966/providers/Microsoft.Cache/Redis/RedisBegin8372", "location": "East US", - "name": "RedisBegin742", + "name": "RedisBegin8372", "type": "Microsoft.Cache/Redis", "tags": {}, "properties": { "provisioningState": "Succeeded", - "redisVersion": "4.0.14", + "redisVersion": "6.0", "sku": { "name": "Basic", "family": "C", @@ -1716,7 +1744,7 @@ "maxmemory-delta": "30" }, "accessKeys": null, - "hostName": "RedisBegin742.redis.cache.windows.net", + "hostName": "RedisBegin8372.redis.cache.windows.net", "port": 6379, "sslPort": 6380, "linkedServers": [] @@ -1724,509 +1752,509 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-2294/providers/Microsoft.Cache/redis/RedisBegin742?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-2966/providers/Microsoft.Cache/redis/RedisBegin8372?api-version=2022-06-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-fd4fce9daafce64595ef991cdeabc798-dcab14b3bdfd9b4a-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220825.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "16db7dcca67a5f21fbf2440d6df988c2", + "traceparent": "00-9f8d760ba9d22f374e6840eba0452833-e0efe47b92d30190-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4ad25bdf9b6086b536c755265071ada0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "16db7dcca67a5f21fbf2440d6df988c2", + "client-request-id": "4ad25bdf9b6086b536c755265071ada0", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 09:32:26 GMT", + "Date": "Wed, 26 Oct 2022 05:14:45 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/e07a0c40-2fbf-410f-a223-15c52e28d429?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/46684072-aefb-475d-96c6-ea382993ae69?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "109f3cf2-e96e-4aa1-be26-af8418fc9bd2", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-request-id": "e07a0c40-2fbf-410f-a223-15c52e28d429", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T093226Z:109f3cf2-e96e-4aa1-be26-af8418fc9bd2", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "10b32f9e-76a9-42c8-9aea-5c919a45a437", + "x-ms-ratelimit-remaining-subscription-deletes": "14998", + "x-ms-request-id": "46684072-aefb-475d-96c6-ea382993ae69", + "x-ms-routing-request-id": "WESTUS2:20221026T051446Z:10b32f9e-76a9-42c8-9aea-5c919a45a437", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/e07a0c40-2fbf-410f-a223-15c52e28d429?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/46684072-aefb-475d-96c6-ea382993ae69?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-fd4fce9daafce64595ef991cdeabc798-53359e01be9f7a41-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "8b37a6cca43372b0801aaeb30411638c", + "traceparent": "00-9f8d760ba9d22f374e6840eba0452833-c3ce86ae28a664db-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0969a094853d94fa731d128b9e92b6b9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "8b37a6cca43372b0801aaeb30411638c", + "client-request-id": "0969a094853d94fa731d128b9e92b6b9", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 09:32:26 GMT", + "Date": "Wed, 26 Oct 2022 05:14:46 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/e07a0c40-2fbf-410f-a223-15c52e28d429?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/46684072-aefb-475d-96c6-ea382993ae69?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "95d15638-4642-4fdf-9514-9f582425951f", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-request-id": "9e6edf44-ac0d-439e-b6ed-5a71075095c8", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T093226Z:95d15638-4642-4fdf-9514-9f582425951f", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "c2bc912f-1b7f-4d5c-8a89-c8a3cffbba67", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "0f1933d5-cbb1-4863-bd1a-0f8032ef32c4", + "x-ms-routing-request-id": "WESTUS2:20221026T051446Z:c2bc912f-1b7f-4d5c-8a89-c8a3cffbba67", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/e07a0c40-2fbf-410f-a223-15c52e28d429?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/46684072-aefb-475d-96c6-ea382993ae69?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-fd4fce9daafce64595ef991cdeabc798-df0f629eb4c27549-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "236492275307249e0e8e564526d48101", + "traceparent": "00-9f8d760ba9d22f374e6840eba0452833-75dbc8aed6cb37d1-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3bf5533b1ef4fc8cdc8b98fa7e22b94b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "236492275307249e0e8e564526d48101", + "client-request-id": "3bf5533b1ef4fc8cdc8b98fa7e22b94b", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 09:32:27 GMT", + "Date": "Wed, 26 Oct 2022 05:14:47 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/e07a0c40-2fbf-410f-a223-15c52e28d429?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/46684072-aefb-475d-96c6-ea382993ae69?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "34f79d52-707f-403e-96ed-f3bd081316a0", - "x-ms-ratelimit-remaining-subscription-reads": "11962", - "x-ms-request-id": "ba48997c-8ac0-452c-8961-997b94d303b5", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T093227Z:34f79d52-707f-403e-96ed-f3bd081316a0", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "b23f4d2d-c6de-4834-9386-1525ed894469", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "ff40ba07-eca4-4bd8-bf30-db181ac64a2a", + "x-ms-routing-request-id": "WESTUS2:20221026T051447Z:b23f4d2d-c6de-4834-9386-1525ed894469", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/e07a0c40-2fbf-410f-a223-15c52e28d429?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/46684072-aefb-475d-96c6-ea382993ae69?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-fd4fce9daafce64595ef991cdeabc798-8ec1a7b2a18e3d4c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c6414969fdc2d58e9e2c802ff9bb48ae", + "traceparent": "00-9f8d760ba9d22f374e6840eba0452833-8f012dad0d655b8d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b091794ca3088563e352031fd0f3a71f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "c6414969fdc2d58e9e2c802ff9bb48ae", + "client-request-id": "b091794ca3088563e352031fd0f3a71f", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 09:32:29 GMT", + "Date": "Wed, 26 Oct 2022 05:14:48 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/e07a0c40-2fbf-410f-a223-15c52e28d429?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/46684072-aefb-475d-96c6-ea382993ae69?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a5562bf0-3d78-4a7f-b368-71aae31184e2", - "x-ms-ratelimit-remaining-subscription-reads": "11961", - "x-ms-request-id": "9ccbf71d-f487-450c-aede-f1a6f8959092", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T093229Z:a5562bf0-3d78-4a7f-b368-71aae31184e2", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "b3747270-5634-46e8-91c6-1bf1af82769e", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "ce2360e3-418a-4c61-92e9-80ef8137aa31", + "x-ms-routing-request-id": "WESTUS2:20221026T051448Z:b3747270-5634-46e8-91c6-1bf1af82769e", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/e07a0c40-2fbf-410f-a223-15c52e28d429?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/46684072-aefb-475d-96c6-ea382993ae69?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-fd4fce9daafce64595ef991cdeabc798-714e6ac82a657e40-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4b25f3d1659678f207137ca54e6b4bac", + "traceparent": "00-9f8d760ba9d22f374e6840eba0452833-0ae222e41d485b92-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7a5663af3ff476e7136c2cb1ecff1651", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "4b25f3d1659678f207137ca54e6b4bac", + "client-request-id": "7a5663af3ff476e7136c2cb1ecff1651", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 09:32:30 GMT", + "Date": "Wed, 26 Oct 2022 05:14:49 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/e07a0c40-2fbf-410f-a223-15c52e28d429?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/46684072-aefb-475d-96c6-ea382993ae69?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "efcdadaf-03c0-4deb-80fb-e190e8268de9", - "x-ms-ratelimit-remaining-subscription-reads": "11960", - "x-ms-request-id": "9a3a29f2-34a0-4302-b5dc-b4c6b2a0f153", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T093230Z:efcdadaf-03c0-4deb-80fb-e190e8268de9", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "53561c6a-8a8d-41c3-8fd7-b18ec14794fc", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "3b597a5c-9f8f-42a0-a4f4-ab1b0f9b802c", + "x-ms-routing-request-id": "WESTUS2:20221026T051449Z:53561c6a-8a8d-41c3-8fd7-b18ec14794fc", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/e07a0c40-2fbf-410f-a223-15c52e28d429?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/46684072-aefb-475d-96c6-ea382993ae69?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-fd4fce9daafce64595ef991cdeabc798-9cfb381d5fe50f4e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "bb4aad989ccf2aca048e85dbd36f2a53", + "traceparent": "00-9f8d760ba9d22f374e6840eba0452833-77b28749f47a73f5-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "253ec663050197b1f07058a11a6c2be9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "bb4aad989ccf2aca048e85dbd36f2a53", + "client-request-id": "253ec663050197b1f07058a11a6c2be9", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 09:32:32 GMT", + "Date": "Wed, 26 Oct 2022 05:14:51 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/e07a0c40-2fbf-410f-a223-15c52e28d429?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/46684072-aefb-475d-96c6-ea382993ae69?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7c539936-cdce-4fa3-8b16-77e212f6434a", - "x-ms-ratelimit-remaining-subscription-reads": "11959", - "x-ms-request-id": "95f7bfc7-87cc-41e6-bd48-1d4bb40cdd52", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T093233Z:7c539936-cdce-4fa3-8b16-77e212f6434a", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "575462fb-4ec1-413a-a1b4-54bee6ad934f", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "27a3ac20-aefc-435c-b4ca-32abea00a9e6", + "x-ms-routing-request-id": "WESTUS2:20221026T051451Z:575462fb-4ec1-413a-a1b4-54bee6ad934f", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/e07a0c40-2fbf-410f-a223-15c52e28d429?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/46684072-aefb-475d-96c6-ea382993ae69?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-fd4fce9daafce64595ef991cdeabc798-89cbad1099d8b44a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3374a74636af036a57c8beae80e88732", + "traceparent": "00-9f8d760ba9d22f374e6840eba0452833-bbebc2a2810836e9-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1a4b79e43fcc0c57921a9c9b77b198e3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "3374a74636af036a57c8beae80e88732", + "client-request-id": "1a4b79e43fcc0c57921a9c9b77b198e3", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 09:32:37 GMT", + "Date": "Wed, 26 Oct 2022 05:14:55 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/e07a0c40-2fbf-410f-a223-15c52e28d429?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/46684072-aefb-475d-96c6-ea382993ae69?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "95749407-f1c2-4088-9c76-44c4032b3d54", - "x-ms-ratelimit-remaining-subscription-reads": "11958", - "x-ms-request-id": "ecc981aa-95ac-4528-b95b-cb50d323dad4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T093237Z:95749407-f1c2-4088-9c76-44c4032b3d54", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "aa54aa34-02fa-45a9-91fe-c7466763c676", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "0b7b700e-2e93-4630-8bc2-c38581668dd3", + "x-ms-routing-request-id": "WESTUS2:20221026T051455Z:aa54aa34-02fa-45a9-91fe-c7466763c676", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/e07a0c40-2fbf-410f-a223-15c52e28d429?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/46684072-aefb-475d-96c6-ea382993ae69?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-fd4fce9daafce64595ef991cdeabc798-4d4af00745285442-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4c97d3e18c7034df29fa4707df17a598", + "traceparent": "00-9f8d760ba9d22f374e6840eba0452833-32ff0b6b38c17ece-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0abbb23c82b5a91db2be8a83e7455ba6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "4c97d3e18c7034df29fa4707df17a598", + "client-request-id": "0abbb23c82b5a91db2be8a83e7455ba6", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 09:32:45 GMT", + "Date": "Wed, 26 Oct 2022 05:15:03 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/e07a0c40-2fbf-410f-a223-15c52e28d429?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/46684072-aefb-475d-96c6-ea382993ae69?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ba937aee-c2c7-4ff1-9336-354ab0b3b435", - "x-ms-ratelimit-remaining-subscription-reads": "11957", - "x-ms-request-id": "b9967061-95ad-4987-b166-0c349655e19b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T093245Z:ba937aee-c2c7-4ff1-9336-354ab0b3b435", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "cc2dbeb3-b9b6-4183-9654-8475bede4701", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "9066fbb9-8e44-4f66-8077-fd83a3649c3b", + "x-ms-routing-request-id": "WESTUS2:20221026T051503Z:cc2dbeb3-b9b6-4183-9654-8475bede4701", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/e07a0c40-2fbf-410f-a223-15c52e28d429?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/46684072-aefb-475d-96c6-ea382993ae69?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-fd4fce9daafce64595ef991cdeabc798-f99695533c14874f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a75f29e918f662fd42476407dd1baa1b", + "traceparent": "00-9f8d760ba9d22f374e6840eba0452833-95abe18ad0cc4a93-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "73cd4341fbb424856e3193e76815203e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "a75f29e918f662fd42476407dd1baa1b", + "client-request-id": "73cd4341fbb424856e3193e76815203e", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 09:33:01 GMT", + "Date": "Wed, 26 Oct 2022 05:15:19 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/e07a0c40-2fbf-410f-a223-15c52e28d429?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/46684072-aefb-475d-96c6-ea382993ae69?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e2c2ad4f-7f3f-40ad-bbeb-f43be3c8b9d6", - "x-ms-ratelimit-remaining-subscription-reads": "11956", - "x-ms-request-id": "c125dfe7-dd92-4a6d-8914-0b17159c273d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T093302Z:e2c2ad4f-7f3f-40ad-bbeb-f43be3c8b9d6", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "ff862072-9d46-4849-9b6e-1d11a4cefd44", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "c5d64f0e-e66e-40f9-96d7-d90fd4af3ccc", + "x-ms-routing-request-id": "WESTUS2:20221026T051519Z:ff862072-9d46-4849-9b6e-1d11a4cefd44", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/e07a0c40-2fbf-410f-a223-15c52e28d429?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/46684072-aefb-475d-96c6-ea382993ae69?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-fd4fce9daafce64595ef991cdeabc798-470d554f8d2ba142-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "fffa5207ddd8b9e2c83f09b4ef63233f", + "traceparent": "00-9f8d760ba9d22f374e6840eba0452833-08f15486fc9172b1-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "676574d820b161335ba2680db5d3254c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "fffa5207ddd8b9e2c83f09b4ef63233f", + "client-request-id": "676574d820b161335ba2680db5d3254c", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 09:33:33 GMT", + "Date": "Wed, 26 Oct 2022 05:15:51 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/e07a0c40-2fbf-410f-a223-15c52e28d429?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/46684072-aefb-475d-96c6-ea382993ae69?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "88376848-e30b-4734-b4ed-5538af028580", - "x-ms-ratelimit-remaining-subscription-reads": "11955", - "x-ms-request-id": "3ad1db92-b8d5-4e5b-a274-3b5b03c1945b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T093334Z:88376848-e30b-4734-b4ed-5538af028580", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "24b7eaa2-d958-4894-b554-ad598b568708", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "5eac97a1-5416-41c1-97f9-98ed3370b0bc", + "x-ms-routing-request-id": "WESTUS2:20221026T051552Z:24b7eaa2-d958-4894-b554-ad598b568708", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/e07a0c40-2fbf-410f-a223-15c52e28d429?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/46684072-aefb-475d-96c6-ea382993ae69?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-fd4fce9daafce64595ef991cdeabc798-29c29f9982b4fe4c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "56c52523df89c93cd6340a2828d7560d", + "traceparent": "00-9f8d760ba9d22f374e6840eba0452833-41a8e75ae5194a4f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3359f5be24e4412f2d979b84ef36409c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "56c52523df89c93cd6340a2828d7560d", + "client-request-id": "3359f5be24e4412f2d979b84ef36409c", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 09:34:05 GMT", + "Date": "Wed, 26 Oct 2022 05:16:24 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/e07a0c40-2fbf-410f-a223-15c52e28d429?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/46684072-aefb-475d-96c6-ea382993ae69?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7d8ba13f-4c92-475c-a9b4-41fb120519db", - "x-ms-ratelimit-remaining-subscription-reads": "11954", - "x-ms-request-id": "8b368a9a-a391-4e6b-aea0-de16b8c79e99", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T093406Z:7d8ba13f-4c92-475c-a9b4-41fb120519db", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "03ea5397-d53c-4fe3-9866-2357586ce2e9", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "9f3cefd5-dc3e-4967-8588-1b7ad5f13616", + "x-ms-routing-request-id": "WESTUS2:20221026T051624Z:03ea5397-d53c-4fe3-9866-2357586ce2e9", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/e07a0c40-2fbf-410f-a223-15c52e28d429?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/46684072-aefb-475d-96c6-ea382993ae69?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-fd4fce9daafce64595ef991cdeabc798-a26336a174676e4f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "8cff2b50a51d0bc046a5dfb70e4872de", + "traceparent": "00-9f8d760ba9d22f374e6840eba0452833-3a322025107e2d66-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "73ab4b9df3e021f50f6b181292776f9b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "8cff2b50a51d0bc046a5dfb70e4872de", + "client-request-id": "73ab4b9df3e021f50f6b181292776f9b", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 09:34:39 GMT", + "Date": "Wed, 26 Oct 2022 05:16:55 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/e07a0c40-2fbf-410f-a223-15c52e28d429?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/46684072-aefb-475d-96c6-ea382993ae69?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "324901bf-f972-4aa4-834f-219882d88580", - "x-ms-ratelimit-remaining-subscription-reads": "11953", - "x-ms-request-id": "13c681c2-3a91-4a32-b76b-8181e713b281", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T093439Z:324901bf-f972-4aa4-834f-219882d88580", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "b4873b41-54c2-4e5a-85a0-84e522603a62", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "45a7066e-330f-4b5c-bbcf-1e71076b7b5f", + "x-ms-routing-request-id": "WESTUS2:20221026T051656Z:b4873b41-54c2-4e5a-85a0-84e522603a62", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/e07a0c40-2fbf-410f-a223-15c52e28d429?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/46684072-aefb-475d-96c6-ea382993ae69?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-fd4fce9daafce64595ef991cdeabc798-e236e5e0a1df0e43-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b7e4242453562791163129a3d3ba90f0", + "traceparent": "00-9f8d760ba9d22f374e6840eba0452833-b6766ea0d9e210cf-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7328460cecbbb35a44233a1a85af7224", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "b7e4242453562791163129a3d3ba90f0", + "client-request-id": "7328460cecbbb35a44233a1a85af7224", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 09:35:11 GMT", + "Date": "Wed, 26 Oct 2022 05:17:27 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/e07a0c40-2fbf-410f-a223-15c52e28d429?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/46684072-aefb-475d-96c6-ea382993ae69?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ba667372-ba87-41cf-89ec-b72839351501", - "x-ms-ratelimit-remaining-subscription-reads": "11952", - "x-ms-request-id": "63564775-e863-4625-8c27-2b15c4f91057", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T093511Z:ba667372-ba87-41cf-89ec-b72839351501", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "44a516f5-a14c-43ec-aed7-1f18b9642a70", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "0364bc7e-1502-492e-99f6-feb8467bef8e", + "x-ms-routing-request-id": "WESTUS2:20221026T051728Z:44a516f5-a14c-43ec-aed7-1f18b9642a70", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/e07a0c40-2fbf-410f-a223-15c52e28d429?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/46684072-aefb-475d-96c6-ea382993ae69?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-fd4fce9daafce64595ef991cdeabc798-fd8cd8e4de2ae549-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c363fbe896637d2265b90fe30085ba8d", + "traceparent": "00-9f8d760ba9d22f374e6840eba0452833-fd0e3aae87ef6c0e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "696fcb61b128ca6c003824780c1daeb6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "c363fbe896637d2265b90fe30085ba8d", + "client-request-id": "696fcb61b128ca6c003824780c1daeb6", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 09:35:43 GMT", + "Date": "Wed, 26 Oct 2022 05:18:01 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/e07a0c40-2fbf-410f-a223-15c52e28d429?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/46684072-aefb-475d-96c6-ea382993ae69?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aefb4e4b-6a1b-4db0-b6fa-3873252b4a0c", - "x-ms-ratelimit-remaining-subscription-reads": "11951", - "x-ms-request-id": "e4dded47-ad52-4f85-b446-b3dd88212390", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T093544Z:aefb4e4b-6a1b-4db0-b6fa-3873252b4a0c", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "c8177fa7-1fa6-475f-830c-bbbc1805f701", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "04a0885f-1177-4f44-9ab6-c24068904a0c", + "x-ms-routing-request-id": "WESTUS2:20221026T051801Z:c8177fa7-1fa6-475f-830c-bbbc1805f701", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/operationresults/e07a0c40-2fbf-410f-a223-15c52e28d429?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/46684072-aefb-475d-96c6-ea382993ae69?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-fd4fce9daafce64595ef991cdeabc798-edb7ffd616f27f42-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "04042bc19ef3fcb79ad776ec7c1d388c", + "traceparent": "00-9f8d760ba9d22f374e6840eba0452833-cf175e9b5b5565eb-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a8770027cd0eb0e0f1f72ebcb9db9b60", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "04042bc19ef3fcb79ad776ec7c1d388c", + "client-request-id": "a8770027cd0eb0e0f1f72ebcb9db9b60", "Content-Length": "0", - "Date": "Thu, 25 Aug 2022 09:36:15 GMT", + "Date": "Wed, 26 Oct 2022 05:18:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fc3d79bf-96a2-4605-a09a-20b8a1dbd275", - "x-ms-ratelimit-remaining-subscription-reads": "11950", - "x-ms-request-id": "1ec0c167-9fdf-45aa-b992-c0f47c5d9b89", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T093616Z:fc3d79bf-96a2-4605-a09a-20b8a1dbd275", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "375d70c4-dfd2-411d-abe7-79efefba9b64", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "eeced8c7-7c4c-4d48-8796-f92bf392da15", + "x-ms-routing-request-id": "WESTUS2:20221026T051833Z:375d70c4-dfd2-411d-abe7-79efefba9b64", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-2294/providers/Microsoft.Cache/redis/RedisBegin742?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-2966/providers/Microsoft.Cache/redis/RedisBegin8372?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-3da1a608ddf69747bfc0e9f66debc9cb-ce1fa49bc2813947-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220825.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "12ceee15afe48d7b0166529d44ad2791", + "traceparent": "00-e8ff5e3987a226a3adedbf6123bead0b-90b426706f07e4fd-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c6b0f3f905075a72da5d7282c8e1a727", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "218", + "Content-Length": "219", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 25 Aug 2022 09:36:15 GMT", + "Date": "Wed, 26 Oct 2022 05:18:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0054aa64-85b4-4d90-ab69-0d69d04362be", + "x-ms-correlation-request-id": "e6af2843-fbdf-46c1-b944-5f750bf0c7cc", "x-ms-failure-cause": "gateway", - "x-ms-request-id": "0054aa64-85b4-4d90-ab69-0d69d04362be", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220825T093616Z:0054aa64-85b4-4d90-ab69-0d69d04362be" + "x-ms-request-id": "e6af2843-fbdf-46c1-b944-5f750bf0c7cc", + "x-ms-routing-request-id": "WESTUS2:20221026T051833Z:e6af2843-fbdf-46c1-b944-5f750bf0c7cc" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.Cache/Redis/RedisBegin742\u0027 under resource group \u0027testRG-2294\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The Resource \u0027Microsoft.Cache/Redis/RedisBegin8372\u0027 under resource group \u0027testRG-2966\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" } } } ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1844477744", + "RandomSeed": "1023162860", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + "SUBSCRIPTION_ID": "3919658b-68ae-4509-8c17-6a2238340ae7" } } diff --git a/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/FirewallFunctionalTests/CreateUpdateDeleteTest.json b/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/FirewallFunctionalTests/CreateUpdateDeleteTest.json index d7aef9e813d0..affe10a20b01 100644 --- a/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/FirewallFunctionalTests/CreateUpdateDeleteTest.json +++ b/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/FirewallFunctionalTests/CreateUpdateDeleteTest.json @@ -1,52 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-2cc292e1fde2ad45970d0492fe3b17cf-fdbce353ee98e047-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "17875100e095fc77b79a0bfa8c17aa4c", + "traceparent": "00-26519240233c278f5a5a980d283a2852-9dae43322d158105-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e5a495f5a69a426caa11dfb2a9b0272c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "747", + "Content-Length": "405", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 03:05:57 GMT", + "Date": "Wed, 26 Oct 2022 05:18:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2ffcb93f-f215-4282-b6d7-1ae2fcc9b8f4", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "2ffcb93f-f215-4282-b6d7-1ae2fcc9b8f4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T030558Z:2ffcb93f-f215-4282-b6d7-1ae2fcc9b8f4" + "x-ms-correlation-request-id": "57a62a88-7b8b-475c-9fb4-68bdcd605637", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "57a62a88-7b8b-475c-9fb4-68bdcd605637", + "x-ms-routing-request-id": "WESTUS2:20221026T051836Z:57a62a88-7b8b-475c-9fb4-68bdcd605637" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7", "authorizationSource": "RoleBased", "managedByTenants": [], - "tags": { - "TagKey-9823": "TagValue-566", - "TagKey-3481": "TagValue-320", - "TagKey-4926": "TagValue-1187", - "TagKey-751": "TagValue-3921", - "TagKey-1866": "TagValue-8559", - "TagKey-3094": "TagValue-9190", - "TagKey-2449": "TagValue-9", - "TagKey-8379": "TagValue-164", - "TagKey-7470": "TagValue-2205", - "TagKey-4236": "TagValue-3698", - "TagKey-5316": "TagValue-2725" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "subscriptionId": "3919658b-68ae-4509-8c17-6a2238340ae7", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "displayName": "CacheTeam - Austin Tolani", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -56,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRG-5812?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/testRG-886?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "43", "Content-Type": "application/json", - "traceparent": "00-1d581b26478cfa4d8691a892694d4ea5-fe016f59ca0e144f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ab116fdada17c626119d324b0bd0506a", + "traceparent": "00-9121d28f963fff02453e02034b43d09f-bb98bc7bc2c64593-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "30a786603512611d59c09649113c7778", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -77,21 +64,21 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "241", + "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 03:06:00 GMT", + "Date": "Wed, 26 Oct 2022 05:18:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5684825e-bece-41f0-b320-e0437d31041f", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "5684825e-bece-41f0-b320-e0437d31041f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T030601Z:5684825e-bece-41f0-b320-e0437d31041f" + "x-ms-correlation-request-id": "3f6bfa48-a172-4781-b04e-1a14a0a77cfd", + "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-request-id": "3f6bfa48-a172-4781-b04e-1a14a0a77cfd", + "x-ms-routing-request-id": "WESTUS2:20221026T051836Z:3f6bfa48-a172-4781-b04e-1a14a0a77cfd" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-5812", - "name": "testRG-5812", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-886", + "name": "testRG-886", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "tags": { @@ -103,16 +90,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-5812/providers/Microsoft.Cache/redis/RedisFirewall728?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-886/providers/Microsoft.Cache/redis/RedisFirewall252?api-version=2022-06-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "87", "Content-Type": "application/json", - "traceparent": "00-4f1b7a50cd03824ab5af7af5c4529e24-07d9a030f5e8c746-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0520d5c283bbe22bdd353d4717a9ae35", + "traceparent": "00-4f3577559c5be6ce2a86c33885f9d20e-db6761cd3619a0be-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "97a32735f62fcd721943dee00378f232", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -127,33 +114,33 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "0520d5c283bbe22bdd353d4717a9ae35", - "Content-Length": "823", + "client-request-id": "97a32735f62fcd721943dee00378f232", + "Content-Length": "819", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 03:06:08 GMT", + "Date": "Wed, 26 Oct 2022 05:18:38 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-5812/providers/Microsoft.Cache/redis/RedisFirewall728?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-886/providers/Microsoft.Cache/redis/RedisFirewall252?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fbe482c9-a6e3-4544-a44e-f956bbc98993", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "815a7362-3e7f-4d74-8447-cd411f82849a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T030608Z:fbe482c9-a6e3-4544-a44e-f956bbc98993", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "a73776b3-00b7-4a34-99be-071ec07cc693", + "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-request-id": "fb88b138-fc58-4150-8a8c-1f6e13c0ab95", + "x-ms-routing-request-id": "WESTUS2:20221026T051838Z:a73776b3-00b7-4a34-99be-071ec07cc693", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-5812/providers/Microsoft.Cache/Redis/RedisFirewall728", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-886/providers/Microsoft.Cache/Redis/RedisFirewall252", "location": "East US", - "name": "RedisFirewall728", + "name": "RedisFirewall252", "type": "Microsoft.Cache/Redis", "tags": {}, "properties": { "provisioningState": "Creating", - "redisVersion": "4.0.14", + "redisVersion": "6.0", "sku": { "name": "Premium", "family": "P", @@ -183,7 +170,7 @@ "primaryKey": "Sanitized", "secondaryKey": "Sanitized" }, - "hostName": "RedisFirewall728.redis.cache.windows.net", + "hostName": "RedisFirewall252.redis.cache.windows.net", "port": 6379, "sslPort": 6380, "linkedServers": [] @@ -191,38 +178,243 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-4f3577559c5be6ce2a86c33885f9d20e-6518db40decb352d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ff7a963a9c8990303562f9f23f805647", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "ff7a963a9c8990303562f9f23f805647", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 05:18:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "706ad49d-66cc-4807-8c22-8c37973ef328", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "ed9dd703-3bf0-4b8d-a3bc-722ea0809c14", + "x-ms-routing-request-id": "WESTUS2:20221026T051838Z:706ad49d-66cc-4807-8c22-8c37973ef328", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95", + "name": "fb88b138-fc58-4150-8a8c-1f6e13c0ab95", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-4f3577559c5be6ce2a86c33885f9d20e-cb6b917ae3d0fe0c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b32a16a4966553ecc71d13ee0f9cd480", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "b32a16a4966553ecc71d13ee0f9cd480", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 05:18:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "28433e1f-dd9b-4b80-8473-c6d096675449", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "448f15d0-d028-4a99-a5b5-2a5756a48f6a", + "x-ms-routing-request-id": "WESTUS2:20221026T051839Z:28433e1f-dd9b-4b80-8473-c6d096675449", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95", + "name": "fb88b138-fc58-4150-8a8c-1f6e13c0ab95", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-4f3577559c5be6ce2a86c33885f9d20e-b49c7ae30acfba6e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6ca6766ef2fe4aa95781acc2e96d4704", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "6ca6766ef2fe4aa95781acc2e96d4704", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 05:18:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "08a66e09-7a7a-4718-bd39-0ed184f0c6c5", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "0576dcf1-ef3b-4856-9dc7-41b6b72eae1d", + "x-ms-routing-request-id": "WESTUS2:20221026T051840Z:08a66e09-7a7a-4718-bd39-0ed184f0c6c5", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95", + "name": "fb88b138-fc58-4150-8a8c-1f6e13c0ab95", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-4f3577559c5be6ce2a86c33885f9d20e-dc0a2e2e873fbc3c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e3329eea216ea302aa27376c89428099", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "e3329eea216ea302aa27376c89428099", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 05:18:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0b2b9d64-c5d2-4de7-acce-b44197cde9f3", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "ba07a457-5938-4162-90c8-aac3776e550a", + "x-ms-routing-request-id": "WESTUS2:20221026T051842Z:0b2b9d64-c5d2-4de7-acce-b44197cde9f3", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95", + "name": "fb88b138-fc58-4150-8a8c-1f6e13c0ab95", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-4f3577559c5be6ce2a86c33885f9d20e-8acb084f140f36b1-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c883798eead9b1496de05be3ea2a6a5a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "c883798eead9b1496de05be3ea2a6a5a", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 05:18:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "fc300fa9-c496-4505-83da-2ebbb7ea9757", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "26ce8813-6bb7-46e6-a513-355f9d8101ff", + "x-ms-routing-request-id": "WESTUS2:20221026T051844Z:fc300fa9-c496-4505-83da-2ebbb7ea9757", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95", + "name": "fb88b138-fc58-4150-8a8c-1f6e13c0ab95", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4f1b7a50cd03824ab5af7af5c4529e24-7fc10662e25ea340-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d454728f672ceb1ee6c83aa4e87ff9f3", + "traceparent": "00-4f3577559c5be6ce2a86c33885f9d20e-288d306ca5a3b65c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "70040ed5f1694d117303c2d6ba3dc015", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "d454728f672ceb1ee6c83aa4e87ff9f3", + "client-request-id": "70040ed5f1694d117303c2d6ba3dc015", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:06:08 GMT", + "Date": "Wed, 26 Oct 2022 05:18:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "424e42b1-e8f8-4672-9a3f-9462a937fa84", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "2ce17ebb-40ad-485d-b5dd-a84711842df5", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T030608Z:424e42b1-e8f8-4672-9a3f-9462a937fa84", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "3f3712be-0013-47b8-ae55-dc44517426a4", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "5d70e33b-f36a-4102-b150-fec43b018efd", + "x-ms-routing-request-id": "WESTUS2:20221026T051848Z:3f3712be-0013-47b8-ae55-dc44517426a4", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a", - "name": "815a7362-3e7f-4d74-8447-cd411f82849a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95", + "name": "fb88b138-fc58-4150-8a8c-1f6e13c0ab95", "status": "InProgress", "startTime": null, "endTime": null, @@ -232,38 +424,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4f1b7a50cd03824ab5af7af5c4529e24-21706ea35e12f64d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c78d15846037da395ebfb43740e63131", + "traceparent": "00-4f3577559c5be6ce2a86c33885f9d20e-d99c4475357084a8-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6f3313007eea002a5580758dc51fb97f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "c78d15846037da395ebfb43740e63131", + "client-request-id": "6f3313007eea002a5580758dc51fb97f", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:06:09 GMT", + "Date": "Wed, 26 Oct 2022 05:18:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a7759237-b50c-4f4d-8756-817d02af8dcd", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "c54cf95d-42af-4ce7-9cee-b19133b3fcdb", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T030610Z:a7759237-b50c-4f4d-8756-817d02af8dcd", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "37f8e41c-14a3-4639-bab2-4e684e271a94", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "f4e38abe-1a71-4fda-a804-323dfac20934", + "x-ms-routing-request-id": "WESTUS2:20221026T051856Z:37f8e41c-14a3-4639-bab2-4e684e271a94", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a", - "name": "815a7362-3e7f-4d74-8447-cd411f82849a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95", + "name": "fb88b138-fc58-4150-8a8c-1f6e13c0ab95", "status": "InProgress", "startTime": null, "endTime": null, @@ -273,38 +465,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4f1b7a50cd03824ab5af7af5c4529e24-96c04e3d4f0d3149-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a4b7836bd9541609ea2c2316add279d1", + "traceparent": "00-4f3577559c5be6ce2a86c33885f9d20e-23578f8227205a89-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7a96ddbd0f3e9d2f673654d62772f730", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "a4b7836bd9541609ea2c2316add279d1", + "client-request-id": "7a96ddbd0f3e9d2f673654d62772f730", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:06:11 GMT", + "Date": "Wed, 26 Oct 2022 05:19:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d3f140d9-b391-40b2-a4c6-805f00963b66", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "36b1245f-599f-41c1-b592-e4dc087d6c96", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T030611Z:d3f140d9-b391-40b2-a4c6-805f00963b66", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "bd1f7c85-7769-4bca-8222-008399084551", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "7ee4d464-3c5d-45fe-a86c-b4fbd41a6396", + "x-ms-routing-request-id": "WESTUS2:20221026T051912Z:bd1f7c85-7769-4bca-8222-008399084551", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a", - "name": "815a7362-3e7f-4d74-8447-cd411f82849a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95", + "name": "fb88b138-fc58-4150-8a8c-1f6e13c0ab95", "status": "InProgress", "startTime": null, "endTime": null, @@ -314,38 +506,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4f1b7a50cd03824ab5af7af5c4529e24-621d799702e31041-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9bc1508a021e2f82397a766cb2e7ab00", + "traceparent": "00-4f3577559c5be6ce2a86c33885f9d20e-fc6be77ce6f67dfc-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d7e2461ffaf6566fe4031be97b838754", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "9bc1508a021e2f82397a766cb2e7ab00", + "client-request-id": "d7e2461ffaf6566fe4031be97b838754", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:06:12 GMT", + "Date": "Wed, 26 Oct 2022 05:19:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e4252b04-7097-4a09-8362-2d60b7d3eadc", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "2f0f2488-3fc9-495d-a4ed-bec417e5effa", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T030612Z:e4252b04-7097-4a09-8362-2d60b7d3eadc", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "cc4c81e6-cf9f-4527-9cb6-7006c8118854", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "382e1383-a541-45f6-a7e7-9623e847a295", + "x-ms-routing-request-id": "WESTUS2:20221026T051944Z:cc4c81e6-cf9f-4527-9cb6-7006c8118854", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a", - "name": "815a7362-3e7f-4d74-8447-cd411f82849a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95", + "name": "fb88b138-fc58-4150-8a8c-1f6e13c0ab95", "status": "InProgress", "startTime": null, "endTime": null, @@ -355,38 +547,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4f1b7a50cd03824ab5af7af5c4529e24-0367f59bfa47d74c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6539099655c7aa9e0c77dd0b3d222c8c", + "traceparent": "00-4f3577559c5be6ce2a86c33885f9d20e-547b21626247dd6d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "dc19424946a6f1d6e39508b32953d8e3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "6539099655c7aa9e0c77dd0b3d222c8c", + "client-request-id": "dc19424946a6f1d6e39508b32953d8e3", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:06:14 GMT", + "Date": "Wed, 26 Oct 2022 05:20:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dda600ea-75ab-4416-ae91-0dd78fc586c2", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "13058036-0eec-4b5c-9d20-6489a5327f10", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T030615Z:dda600ea-75ab-4416-ae91-0dd78fc586c2", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "f7c0c11b-6652-4d28-b36d-4749064d70c7", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "a92b5ca8-6d09-42ce-a850-87df7ad6c384", + "x-ms-routing-request-id": "WESTUS2:20221026T052016Z:f7c0c11b-6652-4d28-b36d-4749064d70c7", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a", - "name": "815a7362-3e7f-4d74-8447-cd411f82849a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95", + "name": "fb88b138-fc58-4150-8a8c-1f6e13c0ab95", "status": "InProgress", "startTime": null, "endTime": null, @@ -396,38 +588,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4f1b7a50cd03824ab5af7af5c4529e24-62ee8e4e750da24a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f0ade2469525681300886bda639c6302", + "traceparent": "00-4f3577559c5be6ce2a86c33885f9d20e-7ee7ae03b9c7c5f9-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7f6e4589e23cc2886e3f953af44622e3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "f0ade2469525681300886bda639c6302", + "client-request-id": "7f6e4589e23cc2886e3f953af44622e3", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:06:19 GMT", + "Date": "Wed, 26 Oct 2022 05:20:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "78501973-c8d0-4ff0-936c-490d4c233d4c", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "e7024cb6-850c-4a87-a206-4b956b0bdefc", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T030619Z:78501973-c8d0-4ff0-936c-490d4c233d4c", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "43e29360-e6af-477e-85b6-5ea2a6ebbe9d", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "f26b508b-3588-4d0b-aed7-53923d03ea4a", + "x-ms-routing-request-id": "WESTUS2:20221026T052048Z:43e29360-e6af-477e-85b6-5ea2a6ebbe9d", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a", - "name": "815a7362-3e7f-4d74-8447-cd411f82849a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95", + "name": "fb88b138-fc58-4150-8a8c-1f6e13c0ab95", "status": "InProgress", "startTime": null, "endTime": null, @@ -437,38 +629,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4f1b7a50cd03824ab5af7af5c4529e24-83dc9b306ab9dd47-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a480238114993509b1168fa62577f116", + "traceparent": "00-4f3577559c5be6ce2a86c33885f9d20e-a11c9a8deebd8696-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e58c00ae1a58d8896ff1f360f2bb2d90", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "a480238114993509b1168fa62577f116", + "client-request-id": "e58c00ae1a58d8896ff1f360f2bb2d90", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:06:27 GMT", + "Date": "Wed, 26 Oct 2022 05:21:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f1f38e3b-4f9a-4961-bd50-f6cef6e9e9cd", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "0cf905d5-d73e-43b8-af98-8e19267ca761", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T030627Z:f1f38e3b-4f9a-4961-bd50-f6cef6e9e9cd", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "3b3a183c-71de-4f6c-aba5-c270dc38df42", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "b91d17b7-1dae-4b45-b0e7-27e721cf9439", + "x-ms-routing-request-id": "WESTUS2:20221026T052120Z:3b3a183c-71de-4f6c-aba5-c270dc38df42", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a", - "name": "815a7362-3e7f-4d74-8447-cd411f82849a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95", + "name": "fb88b138-fc58-4150-8a8c-1f6e13c0ab95", "status": "InProgress", "startTime": null, "endTime": null, @@ -478,38 +670,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4f1b7a50cd03824ab5af7af5c4529e24-61a886a5c8b59e46-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "cf26ea4ebb3901daf5d0643feac4466f", + "traceparent": "00-4f3577559c5be6ce2a86c33885f9d20e-b2d596f1d1bb2e33-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "365f382b08156717b9566e67b09cfc9d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "cf26ea4ebb3901daf5d0643feac4466f", + "client-request-id": "365f382b08156717b9566e67b09cfc9d", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:06:43 GMT", + "Date": "Wed, 26 Oct 2022 05:21:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "761e0a99-ee85-476a-a99f-47c70a178da9", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "152fd25c-f917-4917-b066-82951afde5fd", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T030644Z:761e0a99-ee85-476a-a99f-47c70a178da9", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "333630fc-2321-4320-a3fa-2be1964e2ef3", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "6571e8b9-1c94-4925-8408-cff22fdfb213", + "x-ms-routing-request-id": "WESTUS2:20221026T052153Z:333630fc-2321-4320-a3fa-2be1964e2ef3", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a", - "name": "815a7362-3e7f-4d74-8447-cd411f82849a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95", + "name": "fb88b138-fc58-4150-8a8c-1f6e13c0ab95", "status": "InProgress", "startTime": null, "endTime": null, @@ -519,38 +711,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4f1b7a50cd03824ab5af7af5c4529e24-b74ec092bd4bc144-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1a89da1487a231f2d9773e0e056d4288", + "traceparent": "00-4f3577559c5be6ce2a86c33885f9d20e-a9e5abc6507ec3c1-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "29052473f2c76e8abb95104aee27d0b2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "1a89da1487a231f2d9773e0e056d4288", + "client-request-id": "29052473f2c76e8abb95104aee27d0b2", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:07:16 GMT", + "Date": "Wed, 26 Oct 2022 05:22:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1cebb358-345f-460b-a3fa-bcd0ecf3964a", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "78248776-bf96-48d4-9c22-edf18071b8f3", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T030716Z:1cebb358-345f-460b-a3fa-bcd0ecf3964a", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "dddc094d-c8ab-4b74-b0c8-f8f5b24ef2e4", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "21787514-ee4b-4689-bdd0-007f5a0b7a2f", + "x-ms-routing-request-id": "WESTUS2:20221026T052225Z:dddc094d-c8ab-4b74-b0c8-f8f5b24ef2e4", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a", - "name": "815a7362-3e7f-4d74-8447-cd411f82849a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95", + "name": "fb88b138-fc58-4150-8a8c-1f6e13c0ab95", "status": "InProgress", "startTime": null, "endTime": null, @@ -560,38 +752,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4f1b7a50cd03824ab5af7af5c4529e24-ebf548205b4a5a47-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "798b54969376c6c9487eaec8afca4bed", + "traceparent": "00-4f3577559c5be6ce2a86c33885f9d20e-112277994ca48ee1-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "bc0f0512ebe6a6cee8242b02ab2228d3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "798b54969376c6c9487eaec8afca4bed", + "client-request-id": "bc0f0512ebe6a6cee8242b02ab2228d3", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:07:48 GMT", + "Date": "Wed, 26 Oct 2022 05:22:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a195a280-b674-4188-b61b-3534be090c4d", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "6f1f0b49-9a9a-4779-8a4c-63032e5712f3", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T030748Z:a195a280-b674-4188-b61b-3534be090c4d", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "f2dbac6b-6445-4018-9d05-ae7c28d143d8", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "326e82af-fd83-44d1-83bf-980e886fa3ca", + "x-ms-routing-request-id": "WESTUS2:20221026T052257Z:f2dbac6b-6445-4018-9d05-ae7c28d143d8", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a", - "name": "815a7362-3e7f-4d74-8447-cd411f82849a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95", + "name": "fb88b138-fc58-4150-8a8c-1f6e13c0ab95", "status": "InProgress", "startTime": null, "endTime": null, @@ -601,38 +793,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4f1b7a50cd03824ab5af7af5c4529e24-82729f0eb3e79b41-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4a9120cfd6eec673f7f4f6c17cccfb88", + "traceparent": "00-4f3577559c5be6ce2a86c33885f9d20e-94a14cc10a8f1ff4-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "cded56f403b638c9aef17a80f8cd7991", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "4a9120cfd6eec673f7f4f6c17cccfb88", + "client-request-id": "cded56f403b638c9aef17a80f8cd7991", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:08:20 GMT", + "Date": "Wed, 26 Oct 2022 05:23:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4cc9f97a-a24d-488c-a7e3-d1d9b37a1642", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "5db1146c-d7c7-467e-8f95-9c5357f89e9e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T030821Z:4cc9f97a-a24d-488c-a7e3-d1d9b37a1642", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "ebae512e-a2f3-437c-a759-896a5655a7c7", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "9f27f96e-1c72-43f3-aae4-24ac7f78c898", + "x-ms-routing-request-id": "WESTUS2:20221026T052329Z:ebae512e-a2f3-437c-a759-896a5655a7c7", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a", - "name": "815a7362-3e7f-4d74-8447-cd411f82849a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95", + "name": "fb88b138-fc58-4150-8a8c-1f6e13c0ab95", "status": "InProgress", "startTime": null, "endTime": null, @@ -642,38 +834,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4f1b7a50cd03824ab5af7af5c4529e24-6996aefdc28eb14b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "95a8dc8dcd3881f911c3d223d82a820e", + "traceparent": "00-4f3577559c5be6ce2a86c33885f9d20e-895b73df8af73ff9-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ab54bc86408d88b7565f40a2c687c298", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "95a8dc8dcd3881f911c3d223d82a820e", + "client-request-id": "ab54bc86408d88b7565f40a2c687c298", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:08:52 GMT", + "Date": "Wed, 26 Oct 2022 05:24:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e272da2b-ddba-4e95-ab96-020f95a17e71", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "c8364459-088f-4e9e-a81a-f9a78a264dc6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T030853Z:e272da2b-ddba-4e95-ab96-020f95a17e71", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "01a98346-bcca-4b3e-a70b-668e40950f98", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "9e5e3bb3-0583-4c34-ba67-2b05837530c9", + "x-ms-routing-request-id": "WESTUS2:20221026T052401Z:01a98346-bcca-4b3e-a70b-668e40950f98", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a", - "name": "815a7362-3e7f-4d74-8447-cd411f82849a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95", + "name": "fb88b138-fc58-4150-8a8c-1f6e13c0ab95", "status": "InProgress", "startTime": null, "endTime": null, @@ -683,38 +875,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4f1b7a50cd03824ab5af7af5c4529e24-afa25ff3e798bc4b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e53e502cf8dbbf99e0c482819c07497c", + "traceparent": "00-4f3577559c5be6ce2a86c33885f9d20e-76bc5772fef9ffda-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "98553d6d023a0efb3cd60df5704dad1b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "e53e502cf8dbbf99e0c482819c07497c", + "client-request-id": "98553d6d023a0efb3cd60df5704dad1b", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:09:25 GMT", + "Date": "Wed, 26 Oct 2022 05:24:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "65432e93-5a80-4b17-8e7b-8c8b4e9138e5", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "a1f78ffa-df5d-4728-8ae3-98972eca420f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T030926Z:65432e93-5a80-4b17-8e7b-8c8b4e9138e5", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "60c9de68-e286-425e-be8d-65eb19d32c6e", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "5a308f83-de87-4a76-a295-55d09892b14c", + "x-ms-routing-request-id": "WESTUS2:20221026T052434Z:60c9de68-e286-425e-be8d-65eb19d32c6e", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a", - "name": "815a7362-3e7f-4d74-8447-cd411f82849a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95", + "name": "fb88b138-fc58-4150-8a8c-1f6e13c0ab95", "status": "InProgress", "startTime": null, "endTime": null, @@ -724,38 +916,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4f1b7a50cd03824ab5af7af5c4529e24-5729bce34457d043-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d23a2583b52102b52610392b0450eecd", + "traceparent": "00-4f3577559c5be6ce2a86c33885f9d20e-77eba8dacef0f74f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ef7b9aab7ccdb4459f647757c3267126", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "d23a2583b52102b52610392b0450eecd", + "client-request-id": "ef7b9aab7ccdb4459f647757c3267126", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:09:58 GMT", + "Date": "Wed, 26 Oct 2022 05:25:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a441b2a6-1969-4e48-8d63-a79bf5b2cc84", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "ec13b403-7d26-4b88-b476-7e6c8b97206d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T030958Z:a441b2a6-1969-4e48-8d63-a79bf5b2cc84", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "4e710067-c0e0-43af-a275-945de07883d9", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "292996a4-fed3-43c3-b211-fd5e3702eae4", + "x-ms-routing-request-id": "WESTUS2:20221026T052506Z:4e710067-c0e0-43af-a275-945de07883d9", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a", - "name": "815a7362-3e7f-4d74-8447-cd411f82849a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95", + "name": "fb88b138-fc58-4150-8a8c-1f6e13c0ab95", "status": "InProgress", "startTime": null, "endTime": null, @@ -765,38 +957,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4f1b7a50cd03824ab5af7af5c4529e24-522e828e08da9e47-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "2b95e771158d95ad43e8b4734b78e40a", + "traceparent": "00-4f3577559c5be6ce2a86c33885f9d20e-890d0efad91c30fa-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "bb13e22ee0778356c0466fb632c11708", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "2b95e771158d95ad43e8b4734b78e40a", + "client-request-id": "bb13e22ee0778356c0466fb632c11708", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:10:30 GMT", + "Date": "Wed, 26 Oct 2022 05:25:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "49fe2e9c-11ab-4fbe-90ab-f389fbcc6a61", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "5e7d8c79-d866-4226-b65a-73eddd520c4e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T031031Z:49fe2e9c-11ab-4fbe-90ab-f389fbcc6a61", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "ee80e7db-bde2-4086-bcde-716622c1b272", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "86778dad-ee4f-4d7e-8c1a-1c8511bfd5ac", + "x-ms-routing-request-id": "WESTUS2:20221026T052538Z:ee80e7db-bde2-4086-bcde-716622c1b272", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a", - "name": "815a7362-3e7f-4d74-8447-cd411f82849a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95", + "name": "fb88b138-fc58-4150-8a8c-1f6e13c0ab95", "status": "InProgress", "startTime": null, "endTime": null, @@ -806,38 +998,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4f1b7a50cd03824ab5af7af5c4529e24-d646fdc791ac4342-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b2a05679b0ef77ed9b3cbecabe6ebb90", + "traceparent": "00-4f3577559c5be6ce2a86c33885f9d20e-5b743d7177bf95c9-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2cf624b1d30cf0cbf7a1f9d68ba44b15", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "b2a05679b0ef77ed9b3cbecabe6ebb90", + "client-request-id": "2cf624b1d30cf0cbf7a1f9d68ba44b15", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:11:03 GMT", + "Date": "Wed, 26 Oct 2022 05:26:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9247ddfa-04a5-46da-8e65-1d20529fd984", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "baf933bb-e516-4374-97ae-7a4fba8f67b0", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T031104Z:9247ddfa-04a5-46da-8e65-1d20529fd984", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "0a556a15-2a1f-41ac-9531-0b77d5dc36e6", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "93fbfbe3-b455-4ddc-a8f4-582f33fc18e0", + "x-ms-routing-request-id": "WESTUS2:20221026T052610Z:0a556a15-2a1f-41ac-9531-0b77d5dc36e6", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a", - "name": "815a7362-3e7f-4d74-8447-cd411f82849a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95", + "name": "fb88b138-fc58-4150-8a8c-1f6e13c0ab95", "status": "InProgress", "startTime": null, "endTime": null, @@ -847,38 +1039,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4f1b7a50cd03824ab5af7af5c4529e24-d8db75c55ddb614f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b50fb4d61e726dee78a48f380141b7ae", + "traceparent": "00-4f3577559c5be6ce2a86c33885f9d20e-7109ecd7e1447fbf-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "8ec6e764f23acba443f82e870d8f81dd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "b50fb4d61e726dee78a48f380141b7ae", + "client-request-id": "8ec6e764f23acba443f82e870d8f81dd", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:11:35 GMT", + "Date": "Wed, 26 Oct 2022 05:26:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "51c550aa-3c77-43df-abb7-77eca53b4c0b", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "a7e0e140-a24c-4c87-8bdf-a0ca168b329b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T031136Z:51c550aa-3c77-43df-abb7-77eca53b4c0b", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "559e64b6-a408-4f8b-ae06-4e247d803bc7", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "f1cfdd33-865b-4953-b78a-9b5dbe5efac3", + "x-ms-routing-request-id": "WESTUS2:20221026T052642Z:559e64b6-a408-4f8b-ae06-4e247d803bc7", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a", - "name": "815a7362-3e7f-4d74-8447-cd411f82849a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95", + "name": "fb88b138-fc58-4150-8a8c-1f6e13c0ab95", "status": "InProgress", "startTime": null, "endTime": null, @@ -888,38 +1080,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4f1b7a50cd03824ab5af7af5c4529e24-a1ba54c72eb3b249-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "aeb22f2c3bafc1ddfa1d8f5156e3d7d4", + "traceparent": "00-4f3577559c5be6ce2a86c33885f9d20e-6e8cee72bb509ad2-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "9ea56f4d45305b1a1622c4d5e780f81c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "aeb22f2c3bafc1ddfa1d8f5156e3d7d4", + "client-request-id": "9ea56f4d45305b1a1622c4d5e780f81c", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:12:09 GMT", + "Date": "Wed, 26 Oct 2022 05:27:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1e47c15c-de5c-41d9-ad81-c81cc32dc0a3", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "a7db3f56-a83f-450b-9d85-4d34c0db1b04", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T031209Z:1e47c15c-de5c-41d9-ad81-c81cc32dc0a3", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "ef91b7de-caa3-49a7-9b82-09e9787c1d42", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "1fa67064-be3e-4d66-965a-bdc3fc09828f", + "x-ms-routing-request-id": "WESTUS2:20221026T052715Z:ef91b7de-caa3-49a7-9b82-09e9787c1d42", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a", - "name": "815a7362-3e7f-4d74-8447-cd411f82849a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95", + "name": "fb88b138-fc58-4150-8a8c-1f6e13c0ab95", "status": "InProgress", "startTime": null, "endTime": null, @@ -929,38 +1121,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4f1b7a50cd03824ab5af7af5c4529e24-0efc41a78ba0284d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "969c232d2e685a9767333a4a21b4755a", + "traceparent": "00-4f3577559c5be6ce2a86c33885f9d20e-a8ea7c5b82400e10-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4b5159fa88fbbecd802be814a444e367", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "969c232d2e685a9767333a4a21b4755a", + "client-request-id": "4b5159fa88fbbecd802be814a444e367", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:12:41 GMT", + "Date": "Wed, 26 Oct 2022 05:27:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2b51613b-3031-4947-b2e8-f08feda31a22", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "49cc1015-47e5-48bd-9439-803a21aa2bbc", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T031241Z:2b51613b-3031-4947-b2e8-f08feda31a22", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "32fe1812-dbfc-421b-89d1-fd909b010a32", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "214bd566-ed75-4ec1-a4cb-45d97e7ad7e6", + "x-ms-routing-request-id": "WESTUS2:20221026T052747Z:32fe1812-dbfc-421b-89d1-fd909b010a32", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a", - "name": "815a7362-3e7f-4d74-8447-cd411f82849a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95", + "name": "fb88b138-fc58-4150-8a8c-1f6e13c0ab95", "status": "InProgress", "startTime": null, "endTime": null, @@ -970,38 +1162,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4f1b7a50cd03824ab5af7af5c4529e24-5dbf722a67465c4d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "8f9d10840cbc9ae1d74eba548e9d1695", + "traceparent": "00-4f3577559c5be6ce2a86c33885f9d20e-d7b9937414b18ac5-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1b881c20acfe1fe5cd6b77172ecfe3c3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "8f9d10840cbc9ae1d74eba548e9d1695", + "client-request-id": "1b881c20acfe1fe5cd6b77172ecfe3c3", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:13:13 GMT", + "Date": "Wed, 26 Oct 2022 05:28:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "54531f86-0be9-4e67-b8da-26b2f70d761a", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "8d39cac0-64e3-43ab-95cf-49255e269d49", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T031313Z:54531f86-0be9-4e67-b8da-26b2f70d761a", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "5525417a-3d2a-4217-9b34-6e32b1703029", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "04936cc7-14e6-4640-b9bf-142a039a7b49", + "x-ms-routing-request-id": "WESTUS2:20221026T052819Z:5525417a-3d2a-4217-9b34-6e32b1703029", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a", - "name": "815a7362-3e7f-4d74-8447-cd411f82849a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95", + "name": "fb88b138-fc58-4150-8a8c-1f6e13c0ab95", "status": "InProgress", "startTime": null, "endTime": null, @@ -1011,38 +1203,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4f1b7a50cd03824ab5af7af5c4529e24-d072fa35c464be4e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "dd0bbacd20a4fd469757467c0192a046", + "traceparent": "00-4f3577559c5be6ce2a86c33885f9d20e-8baf07f6e5642e62-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b38c12ff363dc4e2a1e61e045c05b6d2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "dd0bbacd20a4fd469757467c0192a046", + "client-request-id": "b38c12ff363dc4e2a1e61e045c05b6d2", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:13:45 GMT", + "Date": "Wed, 26 Oct 2022 05:28:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "662b153f-243d-46cf-9bf6-717aec33feda", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "3fb5416e-bf45-4837-b616-2a9af8c46ae7", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T031346Z:662b153f-243d-46cf-9bf6-717aec33feda", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "8ad55e78-9e90-4d2f-a74d-019ab9933cbc", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "a387c281-613b-4586-b60f-0eff4ceb4820", + "x-ms-routing-request-id": "WESTUS2:20221026T052851Z:8ad55e78-9e90-4d2f-a74d-019ab9933cbc", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a", - "name": "815a7362-3e7f-4d74-8447-cd411f82849a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95", + "name": "fb88b138-fc58-4150-8a8c-1f6e13c0ab95", "status": "InProgress", "startTime": null, "endTime": null, @@ -1052,38 +1244,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4f1b7a50cd03824ab5af7af5c4529e24-3c3a72c11d6a1040-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "46cc35a8484520184202bf1a7443cbca", + "traceparent": "00-4f3577559c5be6ce2a86c33885f9d20e-d3666bfd162c2624-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "cbb55c3fddf74e1d74327d8f10b590b1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "46cc35a8484520184202bf1a7443cbca", + "client-request-id": "cbb55c3fddf74e1d74327d8f10b590b1", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:14:17 GMT", + "Date": "Wed, 26 Oct 2022 05:29:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "71fd10b7-e215-4354-b058-be23264102f9", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "a5f1c243-6251-4806-9a9b-af9fa5566340", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T031418Z:71fd10b7-e215-4354-b058-be23264102f9", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "228fc759-22f9-46e0-bbbd-8cd6caeba55c", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "4de2c31e-768a-4694-89ab-d36356108d0c", + "x-ms-routing-request-id": "WESTUS2:20221026T052923Z:228fc759-22f9-46e0-bbbd-8cd6caeba55c", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a", - "name": "815a7362-3e7f-4d74-8447-cd411f82849a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95", + "name": "fb88b138-fc58-4150-8a8c-1f6e13c0ab95", "status": "InProgress", "startTime": null, "endTime": null, @@ -1093,38 +1285,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4f1b7a50cd03824ab5af7af5c4529e24-5bef4bdccbdc4645-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "667da51c98a863b5c9a0f764c6649944", + "traceparent": "00-4f3577559c5be6ce2a86c33885f9d20e-9b92f1d03e82442d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "9214254730b7e92a3ac379188ee0c2c7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "667da51c98a863b5c9a0f764c6649944", + "client-request-id": "9214254730b7e92a3ac379188ee0c2c7", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:14:50 GMT", + "Date": "Wed, 26 Oct 2022 05:29:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7ae9c987-361b-4ae4-84cf-db95e71dd62f", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "e472ed1c-6478-4c94-8006-bf2c4f872f90", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T031450Z:7ae9c987-361b-4ae4-84cf-db95e71dd62f", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "03021fe6-44cc-4874-8629-6897c3c7b1ec", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "06649b8b-e907-4b7a-8efc-76a8114e0000", + "x-ms-routing-request-id": "WESTUS2:20221026T052955Z:03021fe6-44cc-4874-8629-6897c3c7b1ec", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a", - "name": "815a7362-3e7f-4d74-8447-cd411f82849a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95", + "name": "fb88b138-fc58-4150-8a8c-1f6e13c0ab95", "status": "InProgress", "startTime": null, "endTime": null, @@ -1134,38 +1326,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4f1b7a50cd03824ab5af7af5c4529e24-e3d6414c04a8224c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "59ac74adcfd0854fa2ea9aa2612b8953", + "traceparent": "00-4f3577559c5be6ce2a86c33885f9d20e-3e3342dd35dab5c4-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d1d8a5b5181922cbf43e3e0ab852b3ec", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "59ac74adcfd0854fa2ea9aa2612b8953", + "client-request-id": "d1d8a5b5181922cbf43e3e0ab852b3ec", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:15:22 GMT", + "Date": "Wed, 26 Oct 2022 05:30:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f37eb907-a662-42db-a6e8-8653d402e40b", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "ecce081a-1af1-4474-bb0c-7e640566f7a3", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T031523Z:f37eb907-a662-42db-a6e8-8653d402e40b", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "d467cfb1-e2af-47ef-b49b-3d46efa3a825", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "cd9dd89e-b6d9-4bb1-93e7-cc38799135c0", + "x-ms-routing-request-id": "WESTUS2:20221026T053028Z:d467cfb1-e2af-47ef-b49b-3d46efa3a825", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a", - "name": "815a7362-3e7f-4d74-8447-cd411f82849a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95", + "name": "fb88b138-fc58-4150-8a8c-1f6e13c0ab95", "status": "InProgress", "startTime": null, "endTime": null, @@ -1175,38 +1367,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4f1b7a50cd03824ab5af7af5c4529e24-aa2118e01cef4245-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5c5f7c8b3a150f9d80687ca550b35add", + "traceparent": "00-4f3577559c5be6ce2a86c33885f9d20e-16f1beb37db714ba-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "37bd6c5523f10e1a32cb90336305bf94", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "5c5f7c8b3a150f9d80687ca550b35add", + "client-request-id": "37bd6c5523f10e1a32cb90336305bf94", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:15:55 GMT", + "Date": "Wed, 26 Oct 2022 05:30:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7fa430b5-9757-4341-b623-fae928db3d0c", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "4dafc86f-f9c7-4a4b-9d4f-247754eca0f1", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T031556Z:7fa430b5-9757-4341-b623-fae928db3d0c", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "ef04d5ad-8d37-4694-9ed6-76f62609699b", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "bf272d9c-00cd-4a79-be90-a083dd627d70", + "x-ms-routing-request-id": "WESTUS2:20221026T053100Z:ef04d5ad-8d37-4694-9ed6-76f62609699b", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a", - "name": "815a7362-3e7f-4d74-8447-cd411f82849a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95", + "name": "fb88b138-fc58-4150-8a8c-1f6e13c0ab95", "status": "InProgress", "startTime": null, "endTime": null, @@ -1216,38 +1408,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4f1b7a50cd03824ab5af7af5c4529e24-cc2b32f3f6cccb41-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "006c7a6972974cfa55f7c3befd13029e", + "traceparent": "00-4f3577559c5be6ce2a86c33885f9d20e-d3b7349269363cd6-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6bdab570bedd2f9759f29d79f11f30e7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "006c7a6972974cfa55f7c3befd13029e", + "client-request-id": "6bdab570bedd2f9759f29d79f11f30e7", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:16:27 GMT", + "Date": "Wed, 26 Oct 2022 05:31:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8d6bb7f2-2a71-4461-bcd1-4b85df944745", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "f4e7a07f-a87e-444c-8720-8d6e42a58d12", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T031628Z:8d6bb7f2-2a71-4461-bcd1-4b85df944745", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "6e93c35f-f254-4916-b7e1-ca9a1e64112e", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "aa387315-245a-4c02-a941-4e8958925e8a", + "x-ms-routing-request-id": "WESTUS2:20221026T053132Z:6e93c35f-f254-4916-b7e1-ca9a1e64112e", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a", - "name": "815a7362-3e7f-4d74-8447-cd411f82849a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95", + "name": "fb88b138-fc58-4150-8a8c-1f6e13c0ab95", "status": "InProgress", "startTime": null, "endTime": null, @@ -1257,38 +1449,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4f1b7a50cd03824ab5af7af5c4529e24-9ee8b1058e5d1c4e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4ad8a3163c04732ed69cd96752aa34ee", + "traceparent": "00-4f3577559c5be6ce2a86c33885f9d20e-67f09eccad960cc1-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "22c28d108a2391d68ac99f4e8797bfef", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "4ad8a3163c04732ed69cd96752aa34ee", + "client-request-id": "22c28d108a2391d68ac99f4e8797bfef", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:17:00 GMT", + "Date": "Wed, 26 Oct 2022 05:32:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "53aa2beb-5877-4ff5-987d-1695a7a8fe58", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "8aaa824e-6bb1-4308-9097-7b9a7a305b3a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T031701Z:53aa2beb-5877-4ff5-987d-1695a7a8fe58", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "b2885b17-f5f2-4aad-a5e3-1c95659884c8", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "ec56f194-d6b9-4d14-a2e7-2afb15b47aae", + "x-ms-routing-request-id": "WESTUS2:20221026T053204Z:b2885b17-f5f2-4aad-a5e3-1c95659884c8", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a", - "name": "815a7362-3e7f-4d74-8447-cd411f82849a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95", + "name": "fb88b138-fc58-4150-8a8c-1f6e13c0ab95", "status": "InProgress", "startTime": null, "endTime": null, @@ -1298,38 +1490,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4f1b7a50cd03824ab5af7af5c4529e24-aba8a6fb70700249-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e639bd9088bf19bc8213071e76df116c", + "traceparent": "00-4f3577559c5be6ce2a86c33885f9d20e-eabc2fe3484b9b67-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "039aaa7f4878970ed58ddeff86a11d13", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "e639bd9088bf19bc8213071e76df116c", + "client-request-id": "039aaa7f4878970ed58ddeff86a11d13", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:17:33 GMT", + "Date": "Wed, 26 Oct 2022 05:32:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ae798a5c-143d-4954-9c4a-63cc24371cf3", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "462217d8-30b5-4b43-bea7-2b6c4e4fe2d8", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T031733Z:ae798a5c-143d-4954-9c4a-63cc24371cf3", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "94d90b65-7041-46b9-9554-9bd2dd684357", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "cc627bda-6f0a-4ead-af8f-59b2bce0167d", + "x-ms-routing-request-id": "WESTUS2:20221026T053236Z:94d90b65-7041-46b9-9554-9bd2dd684357", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a", - "name": "815a7362-3e7f-4d74-8447-cd411f82849a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95", + "name": "fb88b138-fc58-4150-8a8c-1f6e13c0ab95", "status": "InProgress", "startTime": null, "endTime": null, @@ -1339,38 +1531,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4f1b7a50cd03824ab5af7af5c4529e24-97f37400e9e47846-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ad8ede6610db2cd84cf929fa9992f9ab", + "traceparent": "00-4f3577559c5be6ce2a86c33885f9d20e-04593ba24ad54385-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d523a99a9d42e570df48e1131f49a7c1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "ad8ede6610db2cd84cf929fa9992f9ab", + "client-request-id": "d523a99a9d42e570df48e1131f49a7c1", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:18:05 GMT", + "Date": "Wed, 26 Oct 2022 05:33:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a3e3f353-0edd-41ec-9988-de576c10026a", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "43628f1b-61e5-4d50-b85c-1f4031137eab", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T031805Z:a3e3f353-0edd-41ec-9988-de576c10026a", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "bad242f2-06ef-400a-b8de-cd9a98ae0a70", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "948f1819-39a6-4fa4-8b26-67db87be3a0d", + "x-ms-routing-request-id": "WESTUS2:20221026T053308Z:bad242f2-06ef-400a-b8de-cd9a98ae0a70", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a", - "name": "815a7362-3e7f-4d74-8447-cd411f82849a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95", + "name": "fb88b138-fc58-4150-8a8c-1f6e13c0ab95", "status": "InProgress", "startTime": null, "endTime": null, @@ -1380,38 +1572,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4f1b7a50cd03824ab5af7af5c4529e24-37d94b6e3e421f45-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "402ed5c21bd98ddee6bfc8f13510fdf7", + "traceparent": "00-4f3577559c5be6ce2a86c33885f9d20e-eddf90f54e92c08b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "46faad322d84c76f7e2b4c95acd70be8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "402ed5c21bd98ddee6bfc8f13510fdf7", + "client-request-id": "46faad322d84c76f7e2b4c95acd70be8", "Content-Length": "352", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:18:37 GMT", + "Date": "Wed, 26 Oct 2022 05:33:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "089c373b-6468-45b9-9098-386185de252f", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-request-id": "c975e2bf-d2c5-474c-b660-afd8efff2def", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T031838Z:089c373b-6468-45b9-9098-386185de252f", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "d9328e76-b4fc-4ce8-8db5-e49c4f09157c", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "cac8b777-53d0-44f3-b637-31db8826f3dd", + "x-ms-routing-request-id": "WESTUS2:20221026T053341Z:d9328e76-b4fc-4ce8-8db5-e49c4f09157c", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/815a7362-3e7f-4d74-8447-cd411f82849a", - "name": "815a7362-3e7f-4d74-8447-cd411f82849a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/fb88b138-fc58-4150-8a8c-1f6e13c0ab95", + "name": "fb88b138-fc58-4150-8a8c-1f6e13c0ab95", "status": "Succeeded", "startTime": null, "endTime": null, @@ -1421,43 +1613,43 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-5812/providers/Microsoft.Cache/redis/RedisFirewall728?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-886/providers/Microsoft.Cache/redis/RedisFirewall252?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4f1b7a50cd03824ab5af7af5c4529e24-10c82313c859c140-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "74006c8a871b7f13e40c9ac55fc27fef", + "traceparent": "00-4f3577559c5be6ce2a86c33885f9d20e-d44399506fdeaf85-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "deb38cace973e2ac39b4232f66fb778c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "74006c8a871b7f13e40c9ac55fc27fef", - "Content-Length": "773", + "client-request-id": "deb38cace973e2ac39b4232f66fb778c", + "Content-Length": "769", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 03:18:37 GMT", + "Date": "Wed, 26 Oct 2022 05:33:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "634e4425-06fe-45fc-9ea3-80350b2e7d5b", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "b7f0ee43-7468-465e-bbed-88d8d7c2f694", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T031838Z:634e4425-06fe-45fc-9ea3-80350b2e7d5b", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "7dc91606-ee44-4d61-9cb4-9d9fac8aa3cd", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "f4b07f00-e0cf-4e7f-a563-33f14e1c6174", + "x-ms-routing-request-id": "WESTUS2:20221026T053342Z:7dc91606-ee44-4d61-9cb4-9d9fac8aa3cd", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-5812/providers/Microsoft.Cache/Redis/RedisFirewall728", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-886/providers/Microsoft.Cache/Redis/RedisFirewall252", "location": "East US", - "name": "RedisFirewall728", + "name": "RedisFirewall252", "type": "Microsoft.Cache/Redis", "tags": {}, "properties": { "provisioningState": "Succeeded", - "redisVersion": "4.0.14", + "redisVersion": "6.0", "sku": { "name": "Premium", "family": "P", @@ -1484,7 +1676,7 @@ "maxmemory-delta": "642" }, "accessKeys": null, - "hostName": "RedisFirewall728.redis.cache.windows.net", + "hostName": "RedisFirewall252.redis.cache.windows.net", "port": 6379, "sslPort": 6380, "linkedServers": [] @@ -1492,44 +1684,44 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-5812/providers/Microsoft.Cache/redis/RedisFirewall728?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-886/providers/Microsoft.Cache/redis/RedisFirewall252?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-bf40bc4dd022ce468d47d20f7d71bbd5-54c5118244400f48-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a15b5b19d1b04b930000c61b48e7f63c", + "traceparent": "00-36e41093001a44d150d87e7e38dd3854-db9dd05a72105b95-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d8cc1ce6d6a76d8e3a5c561750db3908", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "a15b5b19d1b04b930000c61b48e7f63c", - "Content-Length": "773", + "client-request-id": "d8cc1ce6d6a76d8e3a5c561750db3908", + "Content-Length": "769", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 03:18:38 GMT", + "Date": "Wed, 26 Oct 2022 05:33:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2cc96a07-483f-44bb-baa4-f055243b6071", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-request-id": "1258f910-8849-4a1c-8d82-6806e61520ec", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T031839Z:2cc96a07-483f-44bb-baa4-f055243b6071", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "c6dfccab-bd9b-4c89-aeea-63980242f4ef", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "b2300b8d-894c-45ed-814b-a7211529999b", + "x-ms-routing-request-id": "WESTUS2:20221026T053342Z:c6dfccab-bd9b-4c89-aeea-63980242f4ef", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-5812/providers/Microsoft.Cache/Redis/RedisFirewall728", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-886/providers/Microsoft.Cache/Redis/RedisFirewall252", "location": "East US", - "name": "RedisFirewall728", + "name": "RedisFirewall252", "type": "Microsoft.Cache/Redis", "tags": {}, "properties": { "provisioningState": "Succeeded", - "redisVersion": "4.0.14", + "redisVersion": "6.0", "sku": { "name": "Premium", "family": "P", @@ -1556,7 +1748,7 @@ "maxmemory-delta": "642" }, "accessKeys": null, - "hostName": "RedisFirewall728.redis.cache.windows.net", + "hostName": "RedisFirewall252.redis.cache.windows.net", "port": 6379, "sslPort": 6380, "linkedServers": [] @@ -1564,16 +1756,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-5812/providers/Microsoft.Cache/redis/RedisFirewall728/firewallRules/RuleOne?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-886/providers/Microsoft.Cache/redis/RedisFirewall252/firewallRules/RuleOne?api-version=2022-06-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "57", "Content-Type": "application/json", - "traceparent": "00-caafa989a766f943a8f42da1def43667-9c034b212c005441-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "2d6f32fb85913b8fc1ae5ccc81182e24", + "traceparent": "00-e537bb3b38f0d8d4d53d091ddac3e37d-073243487845cbff-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "9366f83dc895494d01180dd0093f6082", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -1585,43 +1777,43 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "2d6f32fb85913b8fc1ae5ccc81182e24", - "Content-Length": "293", + "client-request-id": "9366f83dc895494d01180dd0093f6082", + "Content-Length": "292", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 03:18:39 GMT", + "Date": "Wed, 26 Oct 2022 05:33:42 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-5812/providers/Microsoft.Cache/redis/RedisFirewall728/firewallRules/RuleOne?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-886/providers/Microsoft.Cache/redis/RedisFirewall252/firewallRules/RuleOne?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1bd38312-747a-431c-9c70-0242de4cc328", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "987fe41e-a6e4-4a76-a7db-70ec1b4174d4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T031840Z:1bd38312-747a-431c-9c70-0242de4cc328", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "493f355f-4535-4dde-a84a-48bc783a9c69", + "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-request-id": "c361a74f-7753-4dfb-9b76-7dc907e8b1f0", + "x-ms-routing-request-id": "WESTUS2:20221026T053342Z:493f355f-4535-4dde-a84a-48bc783a9c69", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { "properties": { "startIP": "10.0.0.0", "endIP": "10.0.0.32" }, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-5812/providers/Microsoft.Cache/redis/RedisFirewall728/firewallRules/RuleOne", - "name": "RedisFirewall728/RuleOne", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-886/providers/Microsoft.Cache/redis/RedisFirewall252/firewallRules/RuleOne", + "name": "RedisFirewall252/RuleOne", "type": "Microsoft.Cache/redis/firewallRules" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-5812/providers/Microsoft.Cache/redis/RedisFirewall728/firewallRules/RuleTwo?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-886/providers/Microsoft.Cache/redis/RedisFirewall252/firewallRules/RuleTwo?api-version=2022-06-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "59", "Content-Type": "application/json", - "traceparent": "00-ca2342448897304ba705b1f5600db881-f534f3a13040d042-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d9d8d83f5cb4b946d8b5731bc1f737fc", + "traceparent": "00-4bcdd365d9faae22fe235a98bc7760de-794c5c47935b0dd3-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "8faec0b3320bd541fe46a4179294915e", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -1633,65 +1825,65 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "d9d8d83f5cb4b946d8b5731bc1f737fc", - "Content-Length": "295", + "client-request-id": "8faec0b3320bd541fe46a4179294915e", + "Content-Length": "294", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 03:18:40 GMT", + "Date": "Wed, 26 Oct 2022 05:33:43 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-5812/providers/Microsoft.Cache/redis/RedisFirewall728/firewallRules/RuleTwo?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-886/providers/Microsoft.Cache/redis/RedisFirewall252/firewallRules/RuleTwo?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1de21179-dbf4-415b-aeb2-e48d926e2452", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "49ae7fef-544f-41d3-be2a-087a920db7c1", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T031840Z:1de21179-dbf4-415b-aeb2-e48d926e2452", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "d1b0681c-4056-46e7-9f29-c2f77854499c", + "x-ms-ratelimit-remaining-subscription-writes": "1190", + "x-ms-request-id": "8f52c2e7-a5b7-4753-ab9a-cc3266400d80", + "x-ms-routing-request-id": "WESTUS2:20221026T053343Z:d1b0681c-4056-46e7-9f29-c2f77854499c", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { "properties": { "startIP": "10.0.0.64", "endIP": "10.0.0.128" }, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-5812/providers/Microsoft.Cache/redis/RedisFirewall728/firewallRules/RuleTwo", - "name": "RedisFirewall728/RuleTwo", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-886/providers/Microsoft.Cache/redis/RedisFirewall252/firewallRules/RuleTwo", + "name": "RedisFirewall252/RuleTwo", "type": "Microsoft.Cache/redis/firewallRules" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-5812/providers/Microsoft.Cache/redis/RedisFirewall728/firewallRules/RuleOne?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-886/providers/Microsoft.Cache/redis/RedisFirewall252/firewallRules/RuleOne?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d45a023fb2727144bea961dddef59c1d-4af3a7cee3eafd45-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "2dc95d155252935ecc20df0275c6c9e7", + "traceparent": "00-1b933c55030895189c36b5f2d5a1ba6b-011e457645f9f1d5-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6ef21b7be4941ef6cf82d78ec9be63fa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "2dc95d155252935ecc20df0275c6c9e7", - "Content-Length": "293", + "client-request-id": "6ef21b7be4941ef6cf82d78ec9be63fa", + "Content-Length": "292", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 03:18:40 GMT", + "Date": "Wed, 26 Oct 2022 05:33:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cb0fe63f-b995-4c92-a298-e75cfd64c9f6", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-request-id": "d631db3e-a572-41f7-ae81-60d7cde57469", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T031841Z:cb0fe63f-b995-4c92-a298-e75cfd64c9f6", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "9f7bc9ec-78ba-42be-9582-c2c7aef9aa10", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "5934b637-b57c-404b-a0aa-bd536741f464", + "x-ms-routing-request-id": "WESTUS2:20221026T053343Z:9f7bc9ec-78ba-42be-9582-c2c7aef9aa10", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-5812/providers/Microsoft.Cache/Redis/RedisFirewall728/firewallRules/RuleOne", - "name": "RedisFirewall728/RuleOne", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-886/providers/Microsoft.Cache/Redis/RedisFirewall252/firewallRules/RuleOne", + "name": "RedisFirewall252/RuleOne", "type": "Microsoft.Cache/Redis/firewallRules", "properties": { "startIP": "10.0.0.0", @@ -1700,38 +1892,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-5812/providers/Microsoft.Cache/redis/RedisFirewall728/firewallRules/RuleTwo?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-886/providers/Microsoft.Cache/redis/RedisFirewall252/firewallRules/RuleTwo?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5c51275f722f404995eefec6897cb9fc-65ba82216bbd5c4b-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6fdca1d11d0f9f88ebb654db117479ca", + "traceparent": "00-3df2ff0001000ef9b85a4112119608de-79191d157eee2b66-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "8f64d3fbaa2c0bfdb691954f2436b76c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "6fdca1d11d0f9f88ebb654db117479ca", - "Content-Length": "295", + "client-request-id": "8f64d3fbaa2c0bfdb691954f2436b76c", + "Content-Length": "294", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 03:18:41 GMT", + "Date": "Wed, 26 Oct 2022 05:33:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b70a31a7-fa00-4140-9ae3-c77598743e60", - "x-ms-ratelimit-remaining-subscription-reads": "11962", - "x-ms-request-id": "1f7a7916-f35a-419a-a35b-edaad97dec0e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T031841Z:b70a31a7-fa00-4140-9ae3-c77598743e60", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "84b673ed-0094-4c99-b1aa-1698d9e2c3e2", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "19e2ca4d-c959-49e0-8d8e-b9653d375e89", + "x-ms-routing-request-id": "WESTUS2:20221026T053343Z:84b673ed-0094-4c99-b1aa-1698d9e2c3e2", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-5812/providers/Microsoft.Cache/Redis/RedisFirewall728/firewallRules/RuleTwo", - "name": "RedisFirewall728/RuleTwo", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-886/providers/Microsoft.Cache/Redis/RedisFirewall252/firewallRules/RuleTwo", + "name": "RedisFirewall252/RuleTwo", "type": "Microsoft.Cache/Redis/firewallRules", "properties": { "startIP": "10.0.0.64", @@ -1740,40 +1932,40 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-5812/providers/Microsoft.Cache/redis/RedisFirewall728/firewallRules?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-886/providers/Microsoft.Cache/redis/RedisFirewall252/firewallRules?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-72c05c3a099a764191d6a5e3081a74e7-ac671c494d62704d-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "24b75f77014eecd27a440c947d444412", + "traceparent": "00-914b13f15dc385c30877203c9fb97bf3-659d462f24445616-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ed54ae86f24dcfeec990c0885bb30c3f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "24b75f77014eecd27a440c947d444412", - "Content-Length": "601", + "client-request-id": "ed54ae86f24dcfeec990c0885bb30c3f", + "Content-Length": "599", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 03:18:42 GMT", + "Date": "Wed, 26 Oct 2022 05:33:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f466a6a2-0fb2-4d0a-a15e-288d25f30711", - "x-ms-ratelimit-remaining-subscription-reads": "11961", - "x-ms-request-id": "f5a77db6-b333-405b-bf9c-c069d3e77901", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T031842Z:f466a6a2-0fb2-4d0a-a15e-288d25f30711", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "62ddd461-645c-4fb8-93c2-1ff0fa560ba5", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "0d247f61-67db-43ed-ad00-c65893a23d37", + "x-ms-routing-request-id": "WESTUS2:20221026T053343Z:62ddd461-645c-4fb8-93c2-1ff0fa560ba5", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-5812/providers/Microsoft.Cache/Redis/RedisFirewall728/firewallRules/RuleOne", - "name": "RedisFirewall728/RuleOne", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-886/providers/Microsoft.Cache/Redis/RedisFirewall252/firewallRules/RuleOne", + "name": "RedisFirewall252/RuleOne", "type": "Microsoft.Cache/Redis/firewallRules", "properties": { "startIP": "10.0.0.0", @@ -1781,8 +1973,8 @@ } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-5812/providers/Microsoft.Cache/Redis/RedisFirewall728/firewallRules/RuleTwo", - "name": "RedisFirewall728/RuleTwo", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-886/providers/Microsoft.Cache/Redis/RedisFirewall252/firewallRules/RuleTwo", + "name": "RedisFirewall252/RuleTwo", "type": "Microsoft.Cache/Redis/firewallRules", "properties": { "startIP": "10.0.0.64", @@ -1793,69 +1985,69 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-5812/providers/Microsoft.Cache/redis/RedisFirewall728/firewallRules/RuleTwo?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-886/providers/Microsoft.Cache/redis/RedisFirewall252/firewallRules/RuleTwo?api-version=2022-06-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-8779af3344bbbc4e8c96fa259409cda6-64893a14ef88464e-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "20498cecc71bf8edd52a419cfe828158", + "traceparent": "00-e82ba1acfd54328c2451828a37419405-155ab421988334cf-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "be1ca9e30130d0311ee6b7034fa7f999", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "20498cecc71bf8edd52a419cfe828158", + "client-request-id": "be1ca9e30130d0311ee6b7034fa7f999", "Content-Length": "0", - "Date": "Fri, 26 Aug 2022 03:18:42 GMT", + "Date": "Wed, 26 Oct 2022 05:33:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b796cd44-edfb-462d-85d7-288a0d94be52", - "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-request-id": "49f906f5-1134-4631-8eec-1163f57db7b6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T031843Z:b796cd44-edfb-462d-85d7-288a0d94be52", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "9e2971f2-fa0d-4423-a290-e7de5cb91409", + "x-ms-ratelimit-remaining-subscription-deletes": "14997", + "x-ms-request-id": "23603998-35b9-495b-85ca-e99be444f7da", + "x-ms-routing-request-id": "WESTUS2:20221026T053344Z:9e2971f2-fa0d-4423-a290-e7de5cb91409", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-5812/providers/Microsoft.Cache/redis/RedisFirewall728/firewallRules/RuleTwo?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-886/providers/Microsoft.Cache/redis/RedisFirewall252/firewallRules/RuleTwo?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-70111acd3481ed4ba7ee5f1f1041b1cf-67ce2a8341bb3c44-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "158b14a6a50fd098cfeff5ca10f322a7", + "traceparent": "00-73954b3639c28af7823bd6b55751c73d-b393328aa28e65ea-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1a076acb756909ade594c69cea74af03", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "158b14a6a50fd098cfeff5ca10f322a7", - "Content-Length": "295", + "client-request-id": "1a076acb756909ade594c69cea74af03", + "Content-Length": "294", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 03:18:43 GMT", + "Date": "Wed, 26 Oct 2022 05:33:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cbffed20-447e-4b70-ba9b-6cb49e2c1461", - "x-ms-ratelimit-remaining-subscription-reads": "11960", - "x-ms-request-id": "b83b1a9c-d9fd-428b-93fb-40992753c3fd", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T031844Z:cbffed20-447e-4b70-ba9b-6cb49e2c1461", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "c446c872-30d4-49a3-a3c9-2896b72cc451", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "9d62b816-df92-4eaf-9c90-e35db6a59f14", + "x-ms-routing-request-id": "WESTUS2:20221026T053344Z:c446c872-30d4-49a3-a3c9-2896b72cc451", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-5812/providers/Microsoft.Cache/Redis/RedisFirewall728/firewallRules/RuleTwo", - "name": "RedisFirewall728/RuleTwo", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-886/providers/Microsoft.Cache/Redis/RedisFirewall252/firewallRules/RuleTwo", + "name": "RedisFirewall252/RuleTwo", "type": "Microsoft.Cache/Redis/firewallRules", "properties": { "startIP": "10.0.0.64", @@ -1866,8 +2058,8 @@ ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "31693192", + "RandomSeed": "2090277293", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + "SUBSCRIPTION_ID": "3919658b-68ae-4509-8c17-6a2238340ae7" } } diff --git a/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/FirewallFunctionalTests/CreateUpdateDeleteTestAsync.json b/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/FirewallFunctionalTests/CreateUpdateDeleteTestAsync.json index 3b3ae3de2c54..f80563bdafda 100644 --- a/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/FirewallFunctionalTests/CreateUpdateDeleteTestAsync.json +++ b/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/FirewallFunctionalTests/CreateUpdateDeleteTestAsync.json @@ -1,52 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-803a1ff80b1c8a419f0c15ced4740898-3fbcb6749a63b84b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "116db1f24eacbedab5427812d35ddca1", + "traceparent": "00-b7a0ff2929538fbbca0cb0fe06969e9e-14c005a436f83b16-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c259b06ca1bfff3b9460ab01746c4a33", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "747", + "Content-Length": "405", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 02:43:26 GMT", + "Date": "Wed, 26 Oct 2022 05:33:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "17a6598f-6cc8-4930-a6d3-16ddcc3e1270", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "17a6598f-6cc8-4930-a6d3-16ddcc3e1270", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T024326Z:17a6598f-6cc8-4930-a6d3-16ddcc3e1270" + "x-ms-correlation-request-id": "851a3537-a2fa-41d1-9123-caa59e1542b3", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "851a3537-a2fa-41d1-9123-caa59e1542b3", + "x-ms-routing-request-id": "WESTUS2:20221026T053346Z:851a3537-a2fa-41d1-9123-caa59e1542b3" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7", "authorizationSource": "RoleBased", "managedByTenants": [], - "tags": { - "TagKey-9823": "TagValue-566", - "TagKey-3481": "TagValue-320", - "TagKey-4926": "TagValue-1187", - "TagKey-751": "TagValue-3921", - "TagKey-1866": "TagValue-8559", - "TagKey-3094": "TagValue-9190", - "TagKey-2449": "TagValue-9", - "TagKey-8379": "TagValue-164", - "TagKey-7470": "TagValue-2205", - "TagKey-4236": "TagValue-3698", - "TagKey-5316": "TagValue-2725" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "subscriptionId": "3919658b-68ae-4509-8c17-6a2238340ae7", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "displayName": "CacheTeam - Austin Tolani", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -56,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRG-3468?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/testRG-8939?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "43", "Content-Type": "application/json", - "traceparent": "00-915916074963dd4e84d5e35706b7b0a7-c6030d10a4f30642-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a6885d2ed91fcaa603b856a08f34dfb0", + "traceparent": "00-bea533b00d323529ffc02d3b020fb901-a800943026ec8e4a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6c60ad28705e51d64411a1848487dc81", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -79,19 +66,19 @@ "Cache-Control": "no-cache", "Content-Length": "241", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 02:43:28 GMT", + "Date": "Wed, 26 Oct 2022 05:33:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f574d3e3-2515-4385-97e3-919e87dde253", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "f574d3e3-2515-4385-97e3-919e87dde253", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T024329Z:f574d3e3-2515-4385-97e3-919e87dde253" + "x-ms-correlation-request-id": "5da0ca19-a34b-4d45-bd00-f9b0c30ffc15", + "x-ms-ratelimit-remaining-subscription-writes": "1189", + "x-ms-request-id": "5da0ca19-a34b-4d45-bd00-f9b0c30ffc15", + "x-ms-routing-request-id": "WESTUS2:20221026T053347Z:5da0ca19-a34b-4d45-bd00-f9b0c30ffc15" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3468", - "name": "testRG-3468", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-8939", + "name": "testRG-8939", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "tags": { @@ -103,16 +90,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3468/providers/Microsoft.Cache/redis/RedisFirewall8216?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-8939/providers/Microsoft.Cache/redis/RedisFirewall9733?api-version=2022-06-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "87", "Content-Type": "application/json", - "traceparent": "00-4cdaff5e1824ff4687639ed0738ea5b0-9d9aad1db8c9b042-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "18aebc39a531c7a6467a7970b2ee64cc", + "traceparent": "00-3c1ac05a662795a1205759a5a2b9a16e-14c51b92a2bba583-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "9501987be52f0df7064ed1f78e6c7bb3", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -127,33 +114,33 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "18aebc39a531c7a6467a7970b2ee64cc", - "Content-Length": "826", + "client-request-id": "9501987be52f0df7064ed1f78e6c7bb3", + "Content-Length": "823", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 02:43:36 GMT", + "Date": "Wed, 26 Oct 2022 05:33:49 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3468/providers/Microsoft.Cache/redis/RedisFirewall8216?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-8939/providers/Microsoft.Cache/redis/RedisFirewall9733?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bec4c58c-5367-4c47-aeef-91d83d0a91f5", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "fa5474b7-5ec4-4493-aaeb-c5634e5feb23", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T024336Z:bec4c58c-5367-4c47-aeef-91d83d0a91f5", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "90db2d4f-97d6-497c-81ca-038f10c7b105", + "x-ms-ratelimit-remaining-subscription-writes": "1188", + "x-ms-request-id": "6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", + "x-ms-routing-request-id": "WESTUS2:20221026T053349Z:90db2d4f-97d6-497c-81ca-038f10c7b105", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3468/providers/Microsoft.Cache/Redis/RedisFirewall8216", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-8939/providers/Microsoft.Cache/Redis/RedisFirewall9733", "location": "East US", - "name": "RedisFirewall8216", + "name": "RedisFirewall9733", "type": "Microsoft.Cache/Redis", "tags": {}, "properties": { "provisioningState": "Creating", - "redisVersion": "4.0.14", + "redisVersion": "6.0", "sku": { "name": "Premium", "family": "P", @@ -183,7 +170,7 @@ "primaryKey": "Sanitized", "secondaryKey": "Sanitized" }, - "hostName": "RedisFirewall8216.redis.cache.windows.net", + "hostName": "RedisFirewall9733.redis.cache.windows.net", "port": 6379, "sslPort": 6380, "linkedServers": [] @@ -191,38 +178,284 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-3c1ac05a662795a1205759a5a2b9a16e-9b5326db1f00a4e5-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b1f1fb804532c8f8695f57220459b5a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "b1f1fb804532c8f8695f57220459b5a4", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 05:33:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8d40d8b8-4373-4f4d-bff4-7659f137ce09", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "d0a49a5c-d0ce-480f-9087-b1abfbdf1b57", + "x-ms-routing-request-id": "WESTUS2:20221026T053350Z:8d40d8b8-4373-4f4d-bff4-7659f137ce09", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", + "name": "6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-3c1ac05a662795a1205759a5a2b9a16e-8f3c701816052f7b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7297d025f02f6c1f587f23b4555c92f6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "7297d025f02f6c1f587f23b4555c92f6", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 05:33:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "fe617d82-8281-49ec-b554-3060050b6315", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "f2bda527-b85e-4375-806f-402403a21499", + "x-ms-routing-request-id": "WESTUS2:20221026T053351Z:fe617d82-8281-49ec-b554-3060050b6315", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", + "name": "6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-3c1ac05a662795a1205759a5a2b9a16e-358cfc7a4672b0ed-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "92760374ca7ba7811be527fab61d7d17", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "92760374ca7ba7811be527fab61d7d17", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 05:33:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "9376ec49-44a9-49af-8cdf-90925559510b", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "fac36081-e94e-4a20-a4dd-d18dfd985cf7", + "x-ms-routing-request-id": "WESTUS2:20221026T053352Z:9376ec49-44a9-49af-8cdf-90925559510b", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", + "name": "6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-3c1ac05a662795a1205759a5a2b9a16e-2a91df734f597984-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "aa74ebc56679909fdc8459b32144730c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "aa74ebc56679909fdc8459b32144730c", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 05:33:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "18ff901a-1c9e-4659-8b72-614d9b41e649", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "3afa2a53-8c44-4935-aa22-7cbb215cab2b", + "x-ms-routing-request-id": "WESTUS2:20221026T053353Z:18ff901a-1c9e-4659-8b72-614d9b41e649", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", + "name": "6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-3c1ac05a662795a1205759a5a2b9a16e-afd8d7bc3267ce10-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "01ad61cc23e25b294eef5649c825b63b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "01ad61cc23e25b294eef5649c825b63b", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 05:33:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "fafbde9a-ac96-4fd0-9e82-a2613ad59334", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "da704b4f-8cff-4595-8881-6626e01451f8", + "x-ms-routing-request-id": "WESTUS2:20221026T053355Z:fafbde9a-ac96-4fd0-9e82-a2613ad59334", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", + "name": "6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-3c1ac05a662795a1205759a5a2b9a16e-e495f33091eeed09-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "69ee0b01e8e80d7d63e6b6f770ce86d7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "69ee0b01e8e80d7d63e6b6f770ce86d7", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 05:33:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "bd186846-1dab-45d5-9f51-6a3fbb9a8a6e", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "f50eea04-f639-44be-8034-f9bf2cdd8a4a", + "x-ms-routing-request-id": "WESTUS2:20221026T053359Z:bd186846-1dab-45d5-9f51-6a3fbb9a8a6e", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", + "name": "6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4cdaff5e1824ff4687639ed0738ea5b0-b652b1e776c6644e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "20234c61f5f3b8fce1ded85e2d5951ca", + "traceparent": "00-3c1ac05a662795a1205759a5a2b9a16e-cf277be06fa247ac-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "542d1a727c6fa235c2195b890f55c7b6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "20234c61f5f3b8fce1ded85e2d5951ca", + "client-request-id": "542d1a727c6fa235c2195b890f55c7b6", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 02:43:36 GMT", + "Date": "Wed, 26 Oct 2022 05:34:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "39053248-78c6-4b94-bb6a-f053338f200f", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "8c9906ca-2af4-4e51-9532-50a9eff79b1d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T024336Z:39053248-78c6-4b94-bb6a-f053338f200f", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "ffeaf607-4002-45e5-8709-480656de1832", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "9233b589-cef9-4460-a33c-4bb6a6ea39c1", + "x-ms-routing-request-id": "WESTUS2:20221026T053407Z:ffeaf607-4002-45e5-8709-480656de1832", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23", - "name": "fa5474b7-5ec4-4493-aaeb-c5634e5feb23", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", + "name": "6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", "status": "InProgress", "startTime": null, "endTime": null, @@ -232,38 +465,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4cdaff5e1824ff4687639ed0738ea5b0-3d37ffcdb5e67649-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e594d3f147c66666e3e8d0880e22a820", + "traceparent": "00-3c1ac05a662795a1205759a5a2b9a16e-ecb001ec1d21ab8e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "15b21dcd0955e424e49f9efc6c31ea80", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "e594d3f147c66666e3e8d0880e22a820", + "client-request-id": "15b21dcd0955e424e49f9efc6c31ea80", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 02:43:37 GMT", + "Date": "Wed, 26 Oct 2022 05:34:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9c1ae4e8-ded3-4be2-ad5a-52c7721ad5cb", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "feb6364e-1f81-4d70-8736-7f8cef97bb89", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T024338Z:9c1ae4e8-ded3-4be2-ad5a-52c7721ad5cb", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "f0845cab-06e2-4be1-88b9-f060baea77ef", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "4b322a0c-2c78-4a5c-9db4-12931c782138", + "x-ms-routing-request-id": "WESTUS2:20221026T053423Z:f0845cab-06e2-4be1-88b9-f060baea77ef", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23", - "name": "fa5474b7-5ec4-4493-aaeb-c5634e5feb23", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", + "name": "6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", "status": "InProgress", "startTime": null, "endTime": null, @@ -273,38 +506,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4cdaff5e1824ff4687639ed0738ea5b0-2e0a81ff716e1943-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "650fe06c43ca05d952608741f97a98ee", + "traceparent": "00-3c1ac05a662795a1205759a5a2b9a16e-e57612804cff44f4-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "add77e6962f784cbd64ca6ce8cf3fd0d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "650fe06c43ca05d952608741f97a98ee", + "client-request-id": "add77e6962f784cbd64ca6ce8cf3fd0d", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 02:43:39 GMT", + "Date": "Wed, 26 Oct 2022 05:34:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ae6706e3-4fcd-444b-bf90-6df405d76b2d", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "445cce70-21ce-4f31-afdd-7e38c8b8da90", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T024339Z:ae6706e3-4fcd-444b-bf90-6df405d76b2d", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "0cf22716-47af-4f17-a5a6-291675c2bf9a", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "9aa06ecb-97a8-4d29-b74a-4c8efcdcf81e", + "x-ms-routing-request-id": "WESTUS2:20221026T053455Z:0cf22716-47af-4f17-a5a6-291675c2bf9a", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23", - "name": "fa5474b7-5ec4-4493-aaeb-c5634e5feb23", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", + "name": "6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", "status": "InProgress", "startTime": null, "endTime": null, @@ -314,38 +547,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4cdaff5e1824ff4687639ed0738ea5b0-011d0d2298f62f4a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4b92cb58299219d2e5bd3c0a2574a9be", + "traceparent": "00-3c1ac05a662795a1205759a5a2b9a16e-037681e343cc754e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "522aff1e701c6882f64970cfde383590", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "4b92cb58299219d2e5bd3c0a2574a9be", + "client-request-id": "522aff1e701c6882f64970cfde383590", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 02:43:40 GMT", + "Date": "Wed, 26 Oct 2022 05:35:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aafa43d9-c923-4f00-ade5-cb37fd1c6281", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "dccc5169-39d4-46ec-b665-24f3785308f6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T024340Z:aafa43d9-c923-4f00-ade5-cb37fd1c6281", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "ead77998-3b0f-497d-acd3-5f47c9501cda", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "f9ed4549-d40d-421a-ad1a-f7591fb83a51", + "x-ms-routing-request-id": "WESTUS2:20221026T053528Z:ead77998-3b0f-497d-acd3-5f47c9501cda", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23", - "name": "fa5474b7-5ec4-4493-aaeb-c5634e5feb23", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", + "name": "6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", "status": "InProgress", "startTime": null, "endTime": null, @@ -355,38 +588,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4cdaff5e1824ff4687639ed0738ea5b0-c19373d8d4df2d47-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4cf1b835eb4aaefffa8f9365c0256c68", + "traceparent": "00-3c1ac05a662795a1205759a5a2b9a16e-dc54b851cc704ed1-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "9020db2f197e6bbf522d3e08625558f1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "4cf1b835eb4aaefffa8f9365c0256c68", + "client-request-id": "9020db2f197e6bbf522d3e08625558f1", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 02:43:42 GMT", + "Date": "Wed, 26 Oct 2022 05:36:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "226fbf6d-ae2c-4321-b6ba-adf210794646", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "2e16030d-db71-4806-8611-c7fa0e9428ea", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T024343Z:226fbf6d-ae2c-4321-b6ba-adf210794646", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "4e2738a6-7d95-413c-96f7-a0080f9d273c", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "718f452f-96c0-4b14-8f36-aacec2b5687c", + "x-ms-routing-request-id": "WESTUS2:20221026T053600Z:4e2738a6-7d95-413c-96f7-a0080f9d273c", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23", - "name": "fa5474b7-5ec4-4493-aaeb-c5634e5feb23", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", + "name": "6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", "status": "InProgress", "startTime": null, "endTime": null, @@ -396,38 +629,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4cdaff5e1824ff4687639ed0738ea5b0-27bf3266996b3248-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "432fe24f5d90428e0df5800d06cedfdd", + "traceparent": "00-3c1ac05a662795a1205759a5a2b9a16e-d28188aeaad4188b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6cdd90a19707f863fc6fb7aef1fca69d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "432fe24f5d90428e0df5800d06cedfdd", + "client-request-id": "6cdd90a19707f863fc6fb7aef1fca69d", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 02:43:47 GMT", + "Date": "Wed, 26 Oct 2022 05:36:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7155162a-3853-40b0-b231-adb01508ec7a", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "f3ab55c6-9791-4a4d-9535-65b9d25d118d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T024347Z:7155162a-3853-40b0-b231-adb01508ec7a", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "c9c3a049-db7b-4f92-a27c-6ca1b4267f10", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "72547c7e-dd6e-4dea-87fe-6058aa18ff11", + "x-ms-routing-request-id": "WESTUS2:20221026T053632Z:c9c3a049-db7b-4f92-a27c-6ca1b4267f10", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23", - "name": "fa5474b7-5ec4-4493-aaeb-c5634e5feb23", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", + "name": "6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", "status": "InProgress", "startTime": null, "endTime": null, @@ -437,38 +670,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4cdaff5e1824ff4687639ed0738ea5b0-34a427e301f9084a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "410bc8b64c886ca3cce45002966d59bf", + "traceparent": "00-3c1ac05a662795a1205759a5a2b9a16e-5feb851cff7e07fc-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b09f16166cd2048f40be00ee317905a0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "410bc8b64c886ca3cce45002966d59bf", + "client-request-id": "b09f16166cd2048f40be00ee317905a0", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 02:43:55 GMT", + "Date": "Wed, 26 Oct 2022 05:37:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8d6a0dd6-7713-46c2-80fc-d2e588f06458", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "ec8f59fa-9d43-448b-a448-bbe9f23693b4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T024355Z:8d6a0dd6-7713-46c2-80fc-d2e588f06458", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "bdd19877-05c6-40dd-bd1b-61a4197935dd", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "791753d0-9a02-4e11-a31d-ff7b4ff1b4fd", + "x-ms-routing-request-id": "WESTUS2:20221026T053705Z:bdd19877-05c6-40dd-bd1b-61a4197935dd", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23", - "name": "fa5474b7-5ec4-4493-aaeb-c5634e5feb23", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", + "name": "6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", "status": "InProgress", "startTime": null, "endTime": null, @@ -478,38 +711,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4cdaff5e1824ff4687639ed0738ea5b0-1316c29fd68dc440-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "42bad4506644d72e2aaf3e546af1a72b", + "traceparent": "00-3c1ac05a662795a1205759a5a2b9a16e-39c45f67ce52b42e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4d2d7ef0c95a97897727940f62117955", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "42bad4506644d72e2aaf3e546af1a72b", + "client-request-id": "4d2d7ef0c95a97897727940f62117955", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 02:44:11 GMT", + "Date": "Wed, 26 Oct 2022 05:37:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e117147c-4dfd-4a44-9c81-b335c911de1d", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "cc342319-1584-4afa-a68e-b745cf08f8b4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T024412Z:e117147c-4dfd-4a44-9c81-b335c911de1d", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "4e01cd0f-21d3-4138-aca9-2fdaedc7ea77", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "8676885d-5584-43e4-81fd-7a8651b9d04b", + "x-ms-routing-request-id": "WESTUS2:20221026T053737Z:4e01cd0f-21d3-4138-aca9-2fdaedc7ea77", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23", - "name": "fa5474b7-5ec4-4493-aaeb-c5634e5feb23", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", + "name": "6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", "status": "InProgress", "startTime": null, "endTime": null, @@ -519,38 +752,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4cdaff5e1824ff4687639ed0738ea5b0-8d2e821907cf2d4c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f7aeb5af2b1a03e03fc376ab0d8baca0", + "traceparent": "00-3c1ac05a662795a1205759a5a2b9a16e-5819ee02398e3d89-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4cf2a187a7b6351e01d92c489674c782", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "f7aeb5af2b1a03e03fc376ab0d8baca0", + "client-request-id": "4cf2a187a7b6351e01d92c489674c782", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 02:44:43 GMT", + "Date": "Wed, 26 Oct 2022 05:38:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0b3e3916-5efc-4b1c-be96-6be1298e82d4", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "2239f4c3-7def-408b-bbd3-bdfff3c96ff3", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T024444Z:0b3e3916-5efc-4b1c-be96-6be1298e82d4", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "e1295a25-b8bd-4fc7-95dc-4c8e85ce6724", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "4a04310f-31d9-414b-a350-43a6198e85f9", + "x-ms-routing-request-id": "WESTUS2:20221026T053809Z:e1295a25-b8bd-4fc7-95dc-4c8e85ce6724", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23", - "name": "fa5474b7-5ec4-4493-aaeb-c5634e5feb23", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", + "name": "6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", "status": "InProgress", "startTime": null, "endTime": null, @@ -560,38 +793,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4cdaff5e1824ff4687639ed0738ea5b0-66731843d58f8e47-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "32bcc19c9d135098993316d90d4f02db", + "traceparent": "00-3c1ac05a662795a1205759a5a2b9a16e-84e3fea7f32d5e3a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "72bd176958ce4d428c0838abd880a22e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "32bcc19c9d135098993316d90d4f02db", + "client-request-id": "72bd176958ce4d428c0838abd880a22e", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 02:45:15 GMT", + "Date": "Wed, 26 Oct 2022 05:38:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6d817511-7281-4edd-994a-b601375b3263", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "1074f99b-bd6e-4466-a81d-2d4cac387204", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T024516Z:6d817511-7281-4edd-994a-b601375b3263", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "912d1f1d-0705-4f31-acf7-8b61f8aee67e", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "9462e219-5872-44a3-bbc1-bcf1b7f3c63a", + "x-ms-routing-request-id": "WESTUS2:20221026T053841Z:912d1f1d-0705-4f31-acf7-8b61f8aee67e", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23", - "name": "fa5474b7-5ec4-4493-aaeb-c5634e5feb23", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", + "name": "6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", "status": "InProgress", "startTime": null, "endTime": null, @@ -601,38 +834,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4cdaff5e1824ff4687639ed0738ea5b0-9078847884243e47-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e053253d61be25a5f3b70381f082ca9e", + "traceparent": "00-3c1ac05a662795a1205759a5a2b9a16e-abc6e4dac464c18b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "9067ab45b88749e960f84c819c400003", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "e053253d61be25a5f3b70381f082ca9e", + "client-request-id": "9067ab45b88749e960f84c819c400003", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 02:45:48 GMT", + "Date": "Wed, 26 Oct 2022 05:39:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "21f5e060-b094-4d19-8354-1738efe8772e", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "8a535f74-74e4-473a-8897-bced508e7f16", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T024549Z:21f5e060-b094-4d19-8354-1738efe8772e", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "e7d98f44-d924-4b4d-9449-3d868e7054e9", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "262a79b2-fe5d-4ebd-b5fa-5156892c429d", + "x-ms-routing-request-id": "WESTUS2:20221026T053913Z:e7d98f44-d924-4b4d-9449-3d868e7054e9", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23", - "name": "fa5474b7-5ec4-4493-aaeb-c5634e5feb23", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", + "name": "6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", "status": "InProgress", "startTime": null, "endTime": null, @@ -642,38 +875,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4cdaff5e1824ff4687639ed0738ea5b0-e204ef13be281c45-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a9b79e02743511171d5e5ee61406f6ef", + "traceparent": "00-3c1ac05a662795a1205759a5a2b9a16e-22de3985286c6818-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4aa5126006542e865ea4bfae6f725c80", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "a9b79e02743511171d5e5ee61406f6ef", + "client-request-id": "4aa5126006542e865ea4bfae6f725c80", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 02:46:21 GMT", + "Date": "Wed, 26 Oct 2022 05:39:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1d1c25f2-3723-41a5-ae8e-36ef7d72262c", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "e4a01012-ef12-4c63-a39a-9c70bb3c414d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T024621Z:1d1c25f2-3723-41a5-ae8e-36ef7d72262c", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "6fd78911-583b-4a48-ae31-8379f7f3423c", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "ece2682e-08fc-42d4-a9b4-6e145abd2fb8", + "x-ms-routing-request-id": "WESTUS2:20221026T053945Z:6fd78911-583b-4a48-ae31-8379f7f3423c", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23", - "name": "fa5474b7-5ec4-4493-aaeb-c5634e5feb23", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", + "name": "6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", "status": "InProgress", "startTime": null, "endTime": null, @@ -683,38 +916,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4cdaff5e1824ff4687639ed0738ea5b0-0e50de2db486b340-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e76e9bc0cc373be11b963e5c9a165f16", + "traceparent": "00-3c1ac05a662795a1205759a5a2b9a16e-b94ec30202247fa0-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "eb03fd36360cb0fa2d7312d60bc1b04c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "e76e9bc0cc373be11b963e5c9a165f16", + "client-request-id": "eb03fd36360cb0fa2d7312d60bc1b04c", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 02:46:53 GMT", + "Date": "Wed, 26 Oct 2022 05:40:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8fe15f74-693c-445e-8978-70a4669db28c", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "69ebebd9-7fa9-4af8-af24-3e33638441d1", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T024653Z:8fe15f74-693c-445e-8978-70a4669db28c", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "bbb542a3-7ced-43d3-8c7a-47be0b118ca1", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "27236ad3-1a94-44aa-b50f-919a19aca18e", + "x-ms-routing-request-id": "WESTUS2:20221026T054018Z:bbb542a3-7ced-43d3-8c7a-47be0b118ca1", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23", - "name": "fa5474b7-5ec4-4493-aaeb-c5634e5feb23", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", + "name": "6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", "status": "InProgress", "startTime": null, "endTime": null, @@ -724,38 +957,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4cdaff5e1824ff4687639ed0738ea5b0-e438677b9c128645-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6fd777695897c8a60e41c26003be11ed", + "traceparent": "00-3c1ac05a662795a1205759a5a2b9a16e-cd428de5c64427d7-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c64b350758da3eda243932e2f93bdaed", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "6fd777695897c8a60e41c26003be11ed", + "client-request-id": "c64b350758da3eda243932e2f93bdaed", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 02:47:25 GMT", + "Date": "Wed, 26 Oct 2022 05:40:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1d747173-c791-4c0b-8df4-90ef0a165cf3", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "cb9e6098-7b58-4b98-a6be-12e742442e02", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T024726Z:1d747173-c791-4c0b-8df4-90ef0a165cf3", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "539a1b08-e47e-4e48-8f64-0d683a0997be", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "468c519f-6cac-4270-be05-20ee40d2779d", + "x-ms-routing-request-id": "WESTUS2:20221026T054050Z:539a1b08-e47e-4e48-8f64-0d683a0997be", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23", - "name": "fa5474b7-5ec4-4493-aaeb-c5634e5feb23", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", + "name": "6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", "status": "InProgress", "startTime": null, "endTime": null, @@ -765,38 +998,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4cdaff5e1824ff4687639ed0738ea5b0-973224a91b39644d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "55c013c1e3133567bc7c8d9e35ba7606", + "traceparent": "00-3c1ac05a662795a1205759a5a2b9a16e-9afff26029b2c4df-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "9e4acb9b143c29f617f51ce0f4b0239c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "55c013c1e3133567bc7c8d9e35ba7606", + "client-request-id": "9e4acb9b143c29f617f51ce0f4b0239c", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 02:47:58 GMT", + "Date": "Wed, 26 Oct 2022 05:41:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ea1219c9-6301-430a-a881-46c6b613d209", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "7290a010-072b-4695-b42f-3cae9cda7bcf", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T024758Z:ea1219c9-6301-430a-a881-46c6b613d209", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "b9da108b-8f43-4100-8d53-239bd9d5f12b", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "5cffef3d-cf1a-49b7-ae69-04f2e2d6dab9", + "x-ms-routing-request-id": "WESTUS2:20221026T054122Z:b9da108b-8f43-4100-8d53-239bd9d5f12b", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23", - "name": "fa5474b7-5ec4-4493-aaeb-c5634e5feb23", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", + "name": "6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", "status": "InProgress", "startTime": null, "endTime": null, @@ -806,38 +1039,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4cdaff5e1824ff4687639ed0738ea5b0-e0c32edb1a47d446-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9c7d47fe862e6858f4a6d9f60981385d", + "traceparent": "00-3c1ac05a662795a1205759a5a2b9a16e-cbab2ccd47ee1abf-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "39a673f49627dea623c4c7d30417b7f2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "9c7d47fe862e6858f4a6d9f60981385d", + "client-request-id": "39a673f49627dea623c4c7d30417b7f2", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 02:48:30 GMT", + "Date": "Wed, 26 Oct 2022 05:41:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ba572289-fd9e-4483-844a-ae7291620a75", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "ebe697b2-38e0-459c-a73a-06f3c94c908c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T024830Z:ba572289-fd9e-4483-844a-ae7291620a75", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "9fb10454-364c-46cf-9ba6-2975b6b81374", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "187f03a7-d420-4dd6-a788-3530e9bf55c0", + "x-ms-routing-request-id": "WESTUS2:20221026T054154Z:9fb10454-364c-46cf-9ba6-2975b6b81374", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23", - "name": "fa5474b7-5ec4-4493-aaeb-c5634e5feb23", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", + "name": "6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", "status": "InProgress", "startTime": null, "endTime": null, @@ -847,38 +1080,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4cdaff5e1824ff4687639ed0738ea5b0-46fb96fc5ac17640-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "879b51850a56850210a1b21acb079253", + "traceparent": "00-3c1ac05a662795a1205759a5a2b9a16e-812eabe2736539b6-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3f3a24991176f2103f21aee43bf94a73", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "879b51850a56850210a1b21acb079253", + "client-request-id": "3f3a24991176f2103f21aee43bf94a73", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 02:49:03 GMT", + "Date": "Wed, 26 Oct 2022 05:42:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b73b43e8-8e96-4e06-b0e3-09df425c37b0", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "9a2e9990-db64-47a0-a512-e72aab93369b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T024904Z:b73b43e8-8e96-4e06-b0e3-09df425c37b0", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "3a4e2968-f6e9-48f4-814e-093075928afb", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "a0380363-9320-42e6-88d8-00817aa6e3c3", + "x-ms-routing-request-id": "WESTUS2:20221026T054226Z:3a4e2968-f6e9-48f4-814e-093075928afb", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23", - "name": "fa5474b7-5ec4-4493-aaeb-c5634e5feb23", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", + "name": "6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", "status": "InProgress", "startTime": null, "endTime": null, @@ -888,38 +1121,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4cdaff5e1824ff4687639ed0738ea5b0-f4b7c63f5dd94242-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "bc61bcca75403abebb58606d09712b3b", + "traceparent": "00-3c1ac05a662795a1205759a5a2b9a16e-634c202f93390c14-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "86ee9516a09405c6246b7a774d2224ff", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "bc61bcca75403abebb58606d09712b3b", + "client-request-id": "86ee9516a09405c6246b7a774d2224ff", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 02:49:35 GMT", + "Date": "Wed, 26 Oct 2022 05:42:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8d1bf1d2-6347-414f-accb-2d675eb8e593", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "ff91ebc5-abc0-4cb2-9ed2-80dd54ad6cc0", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T024936Z:8d1bf1d2-6347-414f-accb-2d675eb8e593", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "cf95bdf0-eb10-4591-99fe-6817aa9706d7", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "f5480d43-7d8e-4152-a226-78f4df872f22", + "x-ms-routing-request-id": "WESTUS2:20221026T054258Z:cf95bdf0-eb10-4591-99fe-6817aa9706d7", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23", - "name": "fa5474b7-5ec4-4493-aaeb-c5634e5feb23", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", + "name": "6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", "status": "InProgress", "startTime": null, "endTime": null, @@ -929,38 +1162,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4cdaff5e1824ff4687639ed0738ea5b0-902d929ed2efc74f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e4193044ef1ff4b044f78b8dd43d9ced", + "traceparent": "00-3c1ac05a662795a1205759a5a2b9a16e-9e07ca15e128762a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "cf46293de376e22662b4f905e7c2a32a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "e4193044ef1ff4b044f78b8dd43d9ced", + "client-request-id": "cf46293de376e22662b4f905e7c2a32a", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 02:50:08 GMT", + "Date": "Wed, 26 Oct 2022 05:43:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "81c761d7-c160-4b6f-b042-db8e7e7e19f9", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "3b2a5604-0e2e-4193-9f8f-3c1229884172", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T025008Z:81c761d7-c160-4b6f-b042-db8e7e7e19f9", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "92ccced8-aab5-4194-b86b-9c42d85f2c05", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "0f1f8e32-91cf-4f97-a30a-7d17332ae58c", + "x-ms-routing-request-id": "WESTUS2:20221026T054331Z:92ccced8-aab5-4194-b86b-9c42d85f2c05", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23", - "name": "fa5474b7-5ec4-4493-aaeb-c5634e5feb23", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", + "name": "6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", "status": "InProgress", "startTime": null, "endTime": null, @@ -970,38 +1203,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4cdaff5e1824ff4687639ed0738ea5b0-549f04bf9fcc2740-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4d2b85137b1f0f1c9260cbfda9957c9f", + "traceparent": "00-3c1ac05a662795a1205759a5a2b9a16e-01078b3aa2daf479-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6fbd547a3129f95e5e351a0a9798a51d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "4d2b85137b1f0f1c9260cbfda9957c9f", + "client-request-id": "6fbd547a3129f95e5e351a0a9798a51d", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 02:50:40 GMT", + "Date": "Wed, 26 Oct 2022 05:44:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4a1ed065-6302-4302-87d9-50d967fdfd1f", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "cd684479-a6e1-4df4-8524-a4fabd6642ef", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T025041Z:4a1ed065-6302-4302-87d9-50d967fdfd1f", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "63357a94-a14c-4a89-a9c7-2973a061e77f", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "70338185-ebea-49cc-a877-9f79a3af3f8b", + "x-ms-routing-request-id": "WESTUS2:20221026T054403Z:63357a94-a14c-4a89-a9c7-2973a061e77f", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23", - "name": "fa5474b7-5ec4-4493-aaeb-c5634e5feb23", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", + "name": "6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", "status": "InProgress", "startTime": null, "endTime": null, @@ -1011,38 +1244,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4cdaff5e1824ff4687639ed0738ea5b0-b9468e46d6cf8c49-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9bd67775aeeedb330c6d7749e931667d", + "traceparent": "00-3c1ac05a662795a1205759a5a2b9a16e-e307ea5783e28c7f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "11a6affd7ab232fc6f0c23e0a6c01d62", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "9bd67775aeeedb330c6d7749e931667d", + "client-request-id": "11a6affd7ab232fc6f0c23e0a6c01d62", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 02:51:13 GMT", + "Date": "Wed, 26 Oct 2022 05:44:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0244a7f0-3705-4e9c-aa43-fa2be37a0010", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "1910787f-c58d-4a6a-9a96-e2a84e33554d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T025113Z:0244a7f0-3705-4e9c-aa43-fa2be37a0010", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "15aa784c-3903-4477-87fa-ec15e366f3eb", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "39ca05eb-1802-4da1-adad-65666b1a15ea", + "x-ms-routing-request-id": "WESTUS2:20221026T054436Z:15aa784c-3903-4477-87fa-ec15e366f3eb", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23", - "name": "fa5474b7-5ec4-4493-aaeb-c5634e5feb23", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", + "name": "6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", "status": "InProgress", "startTime": null, "endTime": null, @@ -1052,38 +1285,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4cdaff5e1824ff4687639ed0738ea5b0-5066646830deb148-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "845a73bbde45c81b130951be23b24aae", + "traceparent": "00-3c1ac05a662795a1205759a5a2b9a16e-22fd1819db35b3d4-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f8fd50c8b5640cd6cb4d7141c81b4bca", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "845a73bbde45c81b130951be23b24aae", + "client-request-id": "f8fd50c8b5640cd6cb4d7141c81b4bca", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 02:51:45 GMT", + "Date": "Wed, 26 Oct 2022 05:45:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "187126f8-04f1-410f-ac7a-3ac260810071", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "4a4a979b-4fcf-4e11-a7f5-5c2da3607f0e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T025145Z:187126f8-04f1-410f-ac7a-3ac260810071", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "6bd16bc2-363c-43a0-9292-8c978efd89ea", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "6a3e8abc-e5df-4963-8d16-ffa47a999126", + "x-ms-routing-request-id": "WESTUS2:20221026T054508Z:6bd16bc2-363c-43a0-9292-8c978efd89ea", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23", - "name": "fa5474b7-5ec4-4493-aaeb-c5634e5feb23", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", + "name": "6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", "status": "InProgress", "startTime": null, "endTime": null, @@ -1093,38 +1326,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4cdaff5e1824ff4687639ed0738ea5b0-185cd9931099064b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5c17eb7b016764fe514f41b103d32561", + "traceparent": "00-3c1ac05a662795a1205759a5a2b9a16e-27ccc51431438fce-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3708dc0e911bff77578aff1d0e7e529d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "5c17eb7b016764fe514f41b103d32561", + "client-request-id": "3708dc0e911bff77578aff1d0e7e529d", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 02:52:18 GMT", + "Date": "Wed, 26 Oct 2022 05:45:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b1c01dab-ae52-4dad-b5b9-29a8673548f6", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "c28efa99-ba7b-486d-9e76-df0931e20484", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T025218Z:b1c01dab-ae52-4dad-b5b9-29a8673548f6", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "d0324104-3ab7-4d72-bbcb-24e27767901f", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "70a6f2d0-80d8-4c81-9a7f-fce20803f32c", + "x-ms-routing-request-id": "WESTUS2:20221026T054540Z:d0324104-3ab7-4d72-bbcb-24e27767901f", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23", - "name": "fa5474b7-5ec4-4493-aaeb-c5634e5feb23", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", + "name": "6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", "status": "InProgress", "startTime": null, "endTime": null, @@ -1134,38 +1367,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4cdaff5e1824ff4687639ed0738ea5b0-87cf2a52be03c941-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "36414efaf73b97595b0d87e45c75b759", + "traceparent": "00-3c1ac05a662795a1205759a5a2b9a16e-20f20866d9bed60d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4642b817ac9a47b8d99a466409bb6a53", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "36414efaf73b97595b0d87e45c75b759", + "client-request-id": "4642b817ac9a47b8d99a466409bb6a53", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 02:52:50 GMT", + "Date": "Wed, 26 Oct 2022 05:46:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "93570bb6-e706-4ef9-97af-889438899a22", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "4657b9d8-7f62-4a6f-a5af-090bfb625f29", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T025250Z:93570bb6-e706-4ef9-97af-889438899a22", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "51e318e7-34a5-4f50-a1a1-1b6abe4dacc0", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "ccd686c5-c502-4414-bd1e-c1965c4a1273", + "x-ms-routing-request-id": "WESTUS2:20221026T054612Z:51e318e7-34a5-4f50-a1a1-1b6abe4dacc0", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23", - "name": "fa5474b7-5ec4-4493-aaeb-c5634e5feb23", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", + "name": "6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", "status": "InProgress", "startTime": null, "endTime": null, @@ -1175,38 +1408,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4cdaff5e1824ff4687639ed0738ea5b0-11773d0b184ef94e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "fecdc9230a19ba1674f532f69d6ac43f", + "traceparent": "00-3c1ac05a662795a1205759a5a2b9a16e-244ae2560fde6a04-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "cad158c1e5b73747d8fea1dab5b9fe4d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "fecdc9230a19ba1674f532f69d6ac43f", + "client-request-id": "cad158c1e5b73747d8fea1dab5b9fe4d", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 02:53:22 GMT", + "Date": "Wed, 26 Oct 2022 05:46:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a6a743a0-a8aa-4f1e-b981-dc331d2a06f8", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "bf9deae4-81ca-4a0f-a1eb-41e0d5d30316", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T025322Z:a6a743a0-a8aa-4f1e-b981-dc331d2a06f8", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "3bd94801-c2c6-460f-b304-2ad8db1effa7", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "9e5b1606-316c-414b-841d-3eda57a3aaa4", + "x-ms-routing-request-id": "WESTUS2:20221026T054644Z:3bd94801-c2c6-460f-b304-2ad8db1effa7", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23", - "name": "fa5474b7-5ec4-4493-aaeb-c5634e5feb23", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", + "name": "6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", "status": "InProgress", "startTime": null, "endTime": null, @@ -1216,38 +1449,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4cdaff5e1824ff4687639ed0738ea5b0-146281fb8857a141-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d5c4f0e41370847391800059791a08dc", + "traceparent": "00-3c1ac05a662795a1205759a5a2b9a16e-e7618a9eb54cbc62-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "102ad3fb04d9623023c15e814b12f69b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "d5c4f0e41370847391800059791a08dc", + "client-request-id": "102ad3fb04d9623023c15e814b12f69b", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 02:53:55 GMT", + "Date": "Wed, 26 Oct 2022 05:47:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "751d2dae-4f63-4c74-a16e-d204aec802f5", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "19c48cad-52bf-4191-9376-1d3168c3135d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T025355Z:751d2dae-4f63-4c74-a16e-d204aec802f5", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "317938b5-f899-4e77-b10c-f853a1e58215", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "a6c40c7b-e3f8-4921-b38f-1085f7778371", + "x-ms-routing-request-id": "WESTUS2:20221026T054716Z:317938b5-f899-4e77-b10c-f853a1e58215", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23", - "name": "fa5474b7-5ec4-4493-aaeb-c5634e5feb23", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", + "name": "6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", "status": "InProgress", "startTime": null, "endTime": null, @@ -1257,38 +1490,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4cdaff5e1824ff4687639ed0738ea5b0-35d4db39db45714c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3a8ee7982706f0473787c245c563faf1", + "traceparent": "00-3c1ac05a662795a1205759a5a2b9a16e-2afcf20d0f8571ba-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b55bac1f87ac31e5700b6e9c0ade9120", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "3a8ee7982706f0473787c245c563faf1", + "client-request-id": "b55bac1f87ac31e5700b6e9c0ade9120", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 02:54:27 GMT", + "Date": "Wed, 26 Oct 2022 05:47:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5a01eb84-ca31-453f-9735-9e08fc3ed747", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "01ed774b-055a-44ab-a4a8-dfbf3ba5c904", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T025428Z:5a01eb84-ca31-453f-9735-9e08fc3ed747", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "27e24912-b82e-4a13-9e7f-5ec9b0e03d62", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "64d33d3b-86ab-441c-a098-75f46a5f54f7", + "x-ms-routing-request-id": "WESTUS2:20221026T054749Z:27e24912-b82e-4a13-9e7f-5ec9b0e03d62", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23", - "name": "fa5474b7-5ec4-4493-aaeb-c5634e5feb23", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", + "name": "6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", "status": "InProgress", "startTime": null, "endTime": null, @@ -1298,38 +1531,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4cdaff5e1824ff4687639ed0738ea5b0-069f2a6507db5c4f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6c004849e1b00fe855496c9909bd4059", + "traceparent": "00-3c1ac05a662795a1205759a5a2b9a16e-0a7698a7e4174019-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3569f89b5a91bc79286ea7f687c6ebc5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "6c004849e1b00fe855496c9909bd4059", + "client-request-id": "3569f89b5a91bc79286ea7f687c6ebc5", "Content-Length": "352", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 02:55:00 GMT", + "Date": "Wed, 26 Oct 2022 05:48:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "504624cf-eb83-429c-9944-6974f731e5c0", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "e17a842d-f0db-4562-a6f1-4eed9b2d7310", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T025500Z:504624cf-eb83-429c-9944-6974f731e5c0", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "e57395a0-b079-49fb-a37e-c58cc3862176", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "48d04d95-20b5-4d0b-85d5-3ac3355560d8", + "x-ms-routing-request-id": "WESTUS2:20221026T054821Z:e57395a0-b079-49fb-a37e-c58cc3862176", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/fa5474b7-5ec4-4493-aaeb-c5634e5feb23", - "name": "fa5474b7-5ec4-4493-aaeb-c5634e5feb23", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", + "name": "6c5e3ba9-3976-4a8f-8db2-39f7b65355c5", "status": "Succeeded", "startTime": null, "endTime": null, @@ -1339,43 +1572,43 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3468/providers/Microsoft.Cache/redis/RedisFirewall8216?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-8939/providers/Microsoft.Cache/redis/RedisFirewall9733?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4cdaff5e1824ff4687639ed0738ea5b0-4f8f8dd151e7404b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b55d55ed89dbbc39a9d49ee8512dbe2d", + "traceparent": "00-3c1ac05a662795a1205759a5a2b9a16e-aaf1ab95aefe9dd3-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "09ba0508485d74a0eef99fce96935744", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "b55d55ed89dbbc39a9d49ee8512dbe2d", - "Content-Length": "776", + "client-request-id": "09ba0508485d74a0eef99fce96935744", + "Content-Length": "773", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 02:55:00 GMT", + "Date": "Wed, 26 Oct 2022 05:48:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "89f3568b-e780-49ef-87ee-c627e9a7be6b", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "7811607d-6b30-4406-96bc-525ca7c41929", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T025501Z:89f3568b-e780-49ef-87ee-c627e9a7be6b", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "ce8e434b-79c9-4dc2-83f5-36fd4ea8b78e", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "f6781a0f-26fa-45fa-b56b-1e80feb88dbe", + "x-ms-routing-request-id": "WESTUS2:20221026T054821Z:ce8e434b-79c9-4dc2-83f5-36fd4ea8b78e", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3468/providers/Microsoft.Cache/Redis/RedisFirewall8216", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-8939/providers/Microsoft.Cache/Redis/RedisFirewall9733", "location": "East US", - "name": "RedisFirewall8216", + "name": "RedisFirewall9733", "type": "Microsoft.Cache/Redis", "tags": {}, "properties": { "provisioningState": "Succeeded", - "redisVersion": "4.0.14", + "redisVersion": "6.0", "sku": { "name": "Premium", "family": "P", @@ -1402,7 +1635,7 @@ "maxmemory-delta": "642" }, "accessKeys": null, - "hostName": "RedisFirewall8216.redis.cache.windows.net", + "hostName": "RedisFirewall9733.redis.cache.windows.net", "port": 6379, "sslPort": 6380, "linkedServers": [] @@ -1410,44 +1643,44 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3468/providers/Microsoft.Cache/redis/RedisFirewall8216?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-8939/providers/Microsoft.Cache/redis/RedisFirewall9733?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ed80b63e65c3f743939aed5b5c9a06a6-e691099a52d5964f-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "31100e869b1ab72cff7ee5bdbaade67a", + "traceparent": "00-388bf75f89f4c89299f7f0f4bd578ca9-26c826a91be269bb-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "52e53d30c0a9c50a329f8d3ee0efa9aa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "31100e869b1ab72cff7ee5bdbaade67a", - "Content-Length": "776", + "client-request-id": "52e53d30c0a9c50a329f8d3ee0efa9aa", + "Content-Length": "773", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 02:55:01 GMT", + "Date": "Wed, 26 Oct 2022 05:48:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "afedc371-a8f9-4506-9381-bd1df394d865", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "f172c84b-9d5a-4482-a0b0-08be6d678982", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T025502Z:afedc371-a8f9-4506-9381-bd1df394d865", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "e59d8146-53dd-48aa-a74a-92b33da224ce", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "e75abacd-51d1-4a05-9776-9c12dec37f6b", + "x-ms-routing-request-id": "WESTUS2:20221026T054821Z:e59d8146-53dd-48aa-a74a-92b33da224ce", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3468/providers/Microsoft.Cache/Redis/RedisFirewall8216", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-8939/providers/Microsoft.Cache/Redis/RedisFirewall9733", "location": "East US", - "name": "RedisFirewall8216", + "name": "RedisFirewall9733", "type": "Microsoft.Cache/Redis", "tags": {}, "properties": { "provisioningState": "Succeeded", - "redisVersion": "4.0.14", + "redisVersion": "6.0", "sku": { "name": "Premium", "family": "P", @@ -1474,7 +1707,7 @@ "maxmemory-delta": "642" }, "accessKeys": null, - "hostName": "RedisFirewall8216.redis.cache.windows.net", + "hostName": "RedisFirewall9733.redis.cache.windows.net", "port": 6379, "sslPort": 6380, "linkedServers": [] @@ -1482,16 +1715,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3468/providers/Microsoft.Cache/redis/RedisFirewall8216/firewallRules/RuleOne?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-8939/providers/Microsoft.Cache/redis/RedisFirewall9733/firewallRules/RuleOne?api-version=2022-06-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "57", "Content-Type": "application/json", - "traceparent": "00-6f6cc81591ed3c43b44046426a9f1850-935a363f6ad29d46-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6f5868474506bf150e43c3dc43ffbe27", + "traceparent": "00-ab05af051394e1e37ca9aab2c396d2c2-759674a9f5d2b5a3-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0594a81f872453c358f54698baab2694", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -1503,43 +1736,43 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "6f5868474506bf150e43c3dc43ffbe27", + "client-request-id": "0594a81f872453c358f54698baab2694", "Content-Length": "295", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 02:55:02 GMT", + "Date": "Wed, 26 Oct 2022 05:48:22 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3468/providers/Microsoft.Cache/redis/RedisFirewall8216/firewallRules/RuleOne?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-8939/providers/Microsoft.Cache/redis/RedisFirewall9733/firewallRules/RuleOne?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8ed151a3-6ce8-4bd1-aaaf-cbfd50e28ebf", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "4e284ca7-35c3-435f-9e4f-d1675c262680", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T025503Z:8ed151a3-6ce8-4bd1-aaaf-cbfd50e28ebf", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "d375684d-7891-476d-9ea0-a565ad4dac68", + "x-ms-ratelimit-remaining-subscription-writes": "1189", + "x-ms-request-id": "1a35f72f-02aa-4199-b15c-3df07a2c8a83", + "x-ms-routing-request-id": "WESTUS2:20221026T054822Z:d375684d-7891-476d-9ea0-a565ad4dac68", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { "properties": { "startIP": "10.0.0.0", "endIP": "10.0.0.32" }, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3468/providers/Microsoft.Cache/redis/RedisFirewall8216/firewallRules/RuleOne", - "name": "RedisFirewall8216/RuleOne", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-8939/providers/Microsoft.Cache/redis/RedisFirewall9733/firewallRules/RuleOne", + "name": "RedisFirewall9733/RuleOne", "type": "Microsoft.Cache/redis/firewallRules" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3468/providers/Microsoft.Cache/redis/RedisFirewall8216/firewallRules/RuleTwo?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-8939/providers/Microsoft.Cache/redis/RedisFirewall9733/firewallRules/RuleTwo?api-version=2022-06-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "59", "Content-Type": "application/json", - "traceparent": "00-0736b58374b5c84f8cdc3ff6dbcc3632-dca4d64c8bcca343-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "fa133e8a0fad513f29a6b55da47c02fb", + "traceparent": "00-685d36c81e7733c3a633b7807715446c-5d028eb8ada20b4c-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4ac6621799e1471bfbf4d6bdbb6293fe", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -1551,65 +1784,65 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "fa133e8a0fad513f29a6b55da47c02fb", + "client-request-id": "4ac6621799e1471bfbf4d6bdbb6293fe", "Content-Length": "297", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 02:55:03 GMT", + "Date": "Wed, 26 Oct 2022 05:48:22 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3468/providers/Microsoft.Cache/redis/RedisFirewall8216/firewallRules/RuleTwo?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-8939/providers/Microsoft.Cache/redis/RedisFirewall9733/firewallRules/RuleTwo?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "782acebf-edbb-4bd8-9c3b-7e5a0542e588", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "a11e5f85-2af8-474c-848a-a3e7d26ebc42", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T025503Z:782acebf-edbb-4bd8-9c3b-7e5a0542e588", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "b96881b9-1caa-4d85-bd38-fb3cf8b6d139", + "x-ms-ratelimit-remaining-subscription-writes": "1188", + "x-ms-request-id": "f411530f-ef0a-45b4-94af-3178b27fd26e", + "x-ms-routing-request-id": "WESTUS2:20221026T054822Z:b96881b9-1caa-4d85-bd38-fb3cf8b6d139", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { "properties": { "startIP": "10.0.0.64", "endIP": "10.0.0.128" }, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3468/providers/Microsoft.Cache/redis/RedisFirewall8216/firewallRules/RuleTwo", - "name": "RedisFirewall8216/RuleTwo", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-8939/providers/Microsoft.Cache/redis/RedisFirewall9733/firewallRules/RuleTwo", + "name": "RedisFirewall9733/RuleTwo", "type": "Microsoft.Cache/redis/firewallRules" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3468/providers/Microsoft.Cache/redis/RedisFirewall8216/firewallRules/RuleOne?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-8939/providers/Microsoft.Cache/redis/RedisFirewall9733/firewallRules/RuleOne?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-3e62756375213c41ad63255a7803d3fc-067cbf3140dc6b44-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e8a124ed4fd54027f95022d6d85073ff", + "traceparent": "00-a4cbb1c7b0864eb4c77c434303d513ba-7f404c38c28ebef9-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "edaff54f52ffa81f7a91f9b479720b87", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "e8a124ed4fd54027f95022d6d85073ff", + "client-request-id": "edaff54f52ffa81f7a91f9b479720b87", "Content-Length": "295", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 02:55:03 GMT", + "Date": "Wed, 26 Oct 2022 05:48:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "060733be-941f-4e02-8f07-9e4e909460a2", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "e9a07928-6d1e-4938-90c8-a80ce7c6d1ea", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T025504Z:060733be-941f-4e02-8f07-9e4e909460a2", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "f6853747-12c5-411c-bc3b-72cf01554798", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "77db5a5f-c3da-45c3-8a8f-6644a73eb521", + "x-ms-routing-request-id": "WESTUS2:20221026T054822Z:f6853747-12c5-411c-bc3b-72cf01554798", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3468/providers/Microsoft.Cache/Redis/RedisFirewall8216/firewallRules/RuleOne", - "name": "RedisFirewall8216/RuleOne", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-8939/providers/Microsoft.Cache/Redis/RedisFirewall9733/firewallRules/RuleOne", + "name": "RedisFirewall9733/RuleOne", "type": "Microsoft.Cache/Redis/firewallRules", "properties": { "startIP": "10.0.0.0", @@ -1618,38 +1851,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3468/providers/Microsoft.Cache/redis/RedisFirewall8216/firewallRules/RuleTwo?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-8939/providers/Microsoft.Cache/redis/RedisFirewall9733/firewallRules/RuleTwo?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1144f20681c15d41b296047a7c4589b1-274fe6fc71d2e044-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "7b32bec0ec9a38cc290745608fb81b92", + "traceparent": "00-12f38e4e8693e13c1558ce48f9b0bfce-993f5ff2339c32e3-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7d26f8795f2986c88c4c0930b10598f6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "7b32bec0ec9a38cc290745608fb81b92", + "client-request-id": "7d26f8795f2986c88c4c0930b10598f6", "Content-Length": "297", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 02:55:04 GMT", + "Date": "Wed, 26 Oct 2022 05:48:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d8a22743-b2ca-442e-b968-e149c557bc0d", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "3d55cb47-8491-4a7c-9b31-56ae71950f17", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T025504Z:d8a22743-b2ca-442e-b968-e149c557bc0d", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "43610a39-67fb-4703-9332-fae0db95eba5", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "d1117cbe-a423-4ef2-95af-f910c33f5fc3", + "x-ms-routing-request-id": "WESTUS2:20221026T054822Z:43610a39-67fb-4703-9332-fae0db95eba5", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3468/providers/Microsoft.Cache/Redis/RedisFirewall8216/firewallRules/RuleTwo", - "name": "RedisFirewall8216/RuleTwo", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-8939/providers/Microsoft.Cache/Redis/RedisFirewall9733/firewallRules/RuleTwo", + "name": "RedisFirewall9733/RuleTwo", "type": "Microsoft.Cache/Redis/firewallRules", "properties": { "startIP": "10.0.0.64", @@ -1658,40 +1891,40 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3468/providers/Microsoft.Cache/redis/RedisFirewall8216/firewallRules?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-8939/providers/Microsoft.Cache/redis/RedisFirewall9733/firewallRules?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-f5a994ca761d214889252fb8e76c90ea-77f306d09ce70b4b-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1feec841d65e3b5117d2015cec6978d9", + "traceparent": "00-e5afcbba60baccc8f00633d3dfb437a1-7aa9be069fe89188-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c548486138fcc494421ed04f9f67cd89", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "1feec841d65e3b5117d2015cec6978d9", + "client-request-id": "c548486138fcc494421ed04f9f67cd89", "Content-Length": "605", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 02:55:04 GMT", + "Date": "Wed, 26 Oct 2022 05:48:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9f1b9a84-3e47-40dd-a8e9-c01ddf5666c5", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-request-id": "53359c34-24a1-4aed-b8a9-acfa3795efba", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T025505Z:9f1b9a84-3e47-40dd-a8e9-c01ddf5666c5", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "30697d53-ec44-4095-86e1-c9168e8ea3da", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "874f5723-5b7f-45f0-93da-014f4b04d4e6", + "x-ms-routing-request-id": "WESTUS2:20221026T054822Z:30697d53-ec44-4095-86e1-c9168e8ea3da", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3468/providers/Microsoft.Cache/Redis/RedisFirewall8216/firewallRules/RuleOne", - "name": "RedisFirewall8216/RuleOne", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-8939/providers/Microsoft.Cache/Redis/RedisFirewall9733/firewallRules/RuleOne", + "name": "RedisFirewall9733/RuleOne", "type": "Microsoft.Cache/Redis/firewallRules", "properties": { "startIP": "10.0.0.0", @@ -1699,8 +1932,8 @@ } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3468/providers/Microsoft.Cache/Redis/RedisFirewall8216/firewallRules/RuleTwo", - "name": "RedisFirewall8216/RuleTwo", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-8939/providers/Microsoft.Cache/Redis/RedisFirewall9733/firewallRules/RuleTwo", + "name": "RedisFirewall9733/RuleTwo", "type": "Microsoft.Cache/Redis/firewallRules", "properties": { "startIP": "10.0.0.64", @@ -1711,69 +1944,69 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3468/providers/Microsoft.Cache/redis/RedisFirewall8216/firewallRules/RuleTwo?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-8939/providers/Microsoft.Cache/redis/RedisFirewall9733/firewallRules/RuleTwo?api-version=2022-06-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-3994ac372cd019479c15358d57e1c875-981ee7ed31fc5448-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e59cb632864901605769bece09c6b140", + "traceparent": "00-434705e3cc8879056bfcc7d68c216312-5dfea4ed6152bea1-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c2444fe9153bf0d52c2860b348eff774", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "e59cb632864901605769bece09c6b140", + "client-request-id": "c2444fe9153bf0d52c2860b348eff774", "Content-Length": "0", - "Date": "Fri, 26 Aug 2022 02:55:05 GMT", + "Date": "Wed, 26 Oct 2022 05:48:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a8a3dda2-88aa-44e8-a753-0a11d5498d7a", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-request-id": "f1604933-31b5-43c9-8a7f-46a6baebaf90", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T025506Z:a8a3dda2-88aa-44e8-a753-0a11d5498d7a", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "f5722ce8-3cb1-4868-a19a-93c90f09ead2", + "x-ms-ratelimit-remaining-subscription-deletes": "14996", + "x-ms-request-id": "f2f9ad1e-e172-4818-9e45-fc930371ec0f", + "x-ms-routing-request-id": "WESTUS2:20221026T054822Z:f5722ce8-3cb1-4868-a19a-93c90f09ead2", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3468/providers/Microsoft.Cache/redis/RedisFirewall8216/firewallRules/RuleTwo?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-8939/providers/Microsoft.Cache/redis/RedisFirewall9733/firewallRules/RuleTwo?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-c59aadc9b2a1724da0774e9115aa1139-0dab5fc0ec344341-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "109590355461eaa16cf763c7ea6f4bc0", + "traceparent": "00-393f8f00dd37e6f919a0a4412f5a1c66-2d59cc38551b9730-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "315303f94629418b63623b0b8f79e725", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "109590355461eaa16cf763c7ea6f4bc0", + "client-request-id": "315303f94629418b63623b0b8f79e725", "Content-Length": "297", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 02:55:06 GMT", + "Date": "Wed, 26 Oct 2022 05:48:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ad1ebf29-8fd9-43de-8678-a40721af1c65", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "6fa4350d-1de6-408d-af96-21f139066fdf", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T025506Z:ad1ebf29-8fd9-43de-8678-a40721af1c65", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "4520a512-a331-4888-8000-8623ef8ffd3b", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "5b4c4721-3d3c-4499-b91b-a0f735a71d18", + "x-ms-routing-request-id": "WESTUS2:20221026T054823Z:4520a512-a331-4888-8000-8623ef8ffd3b", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3468/providers/Microsoft.Cache/Redis/RedisFirewall8216/firewallRules/RuleTwo", - "name": "RedisFirewall8216/RuleTwo", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-8939/providers/Microsoft.Cache/Redis/RedisFirewall9733/firewallRules/RuleTwo", + "name": "RedisFirewall9733/RuleTwo", "type": "Microsoft.Cache/Redis/firewallRules", "properties": { "startIP": "10.0.0.64", @@ -1784,8 +2017,8 @@ ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "932340188", + "RandomSeed": "2131605222", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + "SUBSCRIPTION_ID": "3919658b-68ae-4509-8c17-6a2238340ae7" } } diff --git a/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/GeoReplicationFunctionalTests/CreateUpdateDeleteTest.json b/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/GeoReplicationFunctionalTests/CreateUpdateDeleteTest.json index ab7e96490d4d..b6767404e2a7 100644 --- a/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/GeoReplicationFunctionalTests/CreateUpdateDeleteTest.json +++ b/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/GeoReplicationFunctionalTests/CreateUpdateDeleteTest.json @@ -1,52 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d5a0f5c830cfca4cb14672f7aad8b3d6-9d55d8e815d07a49-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b8f82a31a710084072c282cf853aa4ed", + "traceparent": "00-5a23e117e8c0da77d98d873987d4d7db-4e981f443dbd374a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "06812e66685ef91fd86c3b8bdac770c1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "747", + "Content-Length": "405", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 03:34:46 GMT", + "Date": "Wed, 26 Oct 2022 05:48:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b3e302f7-f2b8-4351-ae65-412a794ae2f9", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "b3e302f7-f2b8-4351-ae65-412a794ae2f9", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T033447Z:b3e302f7-f2b8-4351-ae65-412a794ae2f9" + "x-ms-correlation-request-id": "8b0d2e65-6d5b-4e5a-9446-84288102c01c", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "8b0d2e65-6d5b-4e5a-9446-84288102c01c", + "x-ms-routing-request-id": "WESTUS2:20221026T054825Z:8b0d2e65-6d5b-4e5a-9446-84288102c01c" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7", "authorizationSource": "RoleBased", "managedByTenants": [], - "tags": { - "TagKey-9823": "TagValue-566", - "TagKey-3481": "TagValue-320", - "TagKey-4926": "TagValue-1187", - "TagKey-751": "TagValue-3921", - "TagKey-1866": "TagValue-8559", - "TagKey-3094": "TagValue-9190", - "TagKey-2449": "TagValue-9", - "TagKey-8379": "TagValue-164", - "TagKey-7470": "TagValue-2205", - "TagKey-4236": "TagValue-3698", - "TagKey-5316": "TagValue-2725" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "subscriptionId": "3919658b-68ae-4509-8c17-6a2238340ae7", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "displayName": "CacheTeam - Austin Tolani", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -56,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRG-8694?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/testRG-4023?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "43", "Content-Type": "application/json", - "traceparent": "00-4aace7bad130c24d8518cc9489f23f54-ac59e7c3a129444c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4f2259c2f92e2373786a7e1bd570eef4", + "traceparent": "00-1b53bd266fe7fe3aad1c574cdbe12171-110452268538e117-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "566a3314fcebe88cb9ee67224d4c4109", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -79,19 +66,19 @@ "Cache-Control": "no-cache", "Content-Length": "241", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 03:34:48 GMT", + "Date": "Wed, 26 Oct 2022 05:48:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e60f1572-7cec-4c73-a65e-92c04c052e8d", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "e60f1572-7cec-4c73-a65e-92c04c052e8d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T033448Z:e60f1572-7cec-4c73-a65e-92c04c052e8d" + "x-ms-correlation-request-id": "0d7bf2b6-af77-4f3a-a312-152a336e1679", + "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-request-id": "0d7bf2b6-af77-4f3a-a312-152a336e1679", + "x-ms-routing-request-id": "WESTUS2:20221026T054825Z:0d7bf2b6-af77-4f3a-a312-152a336e1679" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694", - "name": "testRG-8694", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4023", + "name": "testRG-4023", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "tags": { @@ -103,16 +90,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/redis/RedisGeo15985?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4023/providers/Microsoft.Cache/redis/RedisGeo15727?api-version=2022-06-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "95", "Content-Type": "application/json", - "traceparent": "00-698b01c4d7ce5a44864b301a8dc382c4-751edb030f66ec44-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "08a73174c7026dda1ce32eeb2a9c39cd", + "traceparent": "00-91f50a9c173a7bb6ab90fe448b73c5d2-b04a1d8b1cc522d5-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0d63a6cb3eeae42fd328fd19bfefd0fe", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -127,33 +114,33 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "08a73174c7026dda1ce32eeb2a9c39cd", - "Content-Length": "823", + "client-request-id": "0d63a6cb3eeae42fd328fd19bfefd0fe", + "Content-Length": "820", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 03:34:54 GMT", + "Date": "Wed, 26 Oct 2022 05:48:28 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/redis/RedisGeo15985?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4023/providers/Microsoft.Cache/redis/RedisGeo15727?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f663b5ce-1e1e-4725-9ef8-70709b6ee7cc", - "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "66216902-aaaf-4676-b93d-b82b37d2b85c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T033454Z:f663b5ce-1e1e-4725-9ef8-70709b6ee7cc", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "dbb811d6-e097-4418-b171-04c19f414fb0", + "x-ms-ratelimit-remaining-subscription-writes": "1186", + "x-ms-request-id": "82d12b74-e946-4e1b-b9ec-04a94b39c73a", + "x-ms-routing-request-id": "WESTUS2:20221026T054828Z:dbb811d6-e097-4418-b171-04c19f414fb0", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo15985", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4023/providers/Microsoft.Cache/Redis/RedisGeo15727", "location": "North Central US", - "name": "RedisGeo15985", + "name": "RedisGeo15727", "type": "Microsoft.Cache/Redis", "tags": {}, "properties": { "provisioningState": "Creating", - "redisVersion": "4.0.14", + "redisVersion": "6.0", "sku": { "name": "Premium", "family": "P", @@ -183,7 +170,7 @@ "primaryKey": "Sanitized", "secondaryKey": "Sanitized" }, - "hostName": "RedisGeo15985.redis.cache.windows.net", + "hostName": "RedisGeo15727.redis.cache.windows.net", "port": 6379, "sslPort": 6380, "linkedServers": [] @@ -191,79 +178,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-698b01c4d7ce5a44864b301a8dc382c4-8be8febdcfe8724e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "bb2f0703ba3d5a5774c0dc8ff48d40e2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", - "Cache-Control": "no-cache", - "client-request-id": "bb2f0703ba3d5a5774c0dc8ff48d40e2", - "Content-Length": "362", - "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:34:54 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b7eaa884-8802-4466-93be-eef321c6afc8", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "2fe366ef-d871-4099-8bd8-f5057b0e7084", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T033455Z:b7eaa884-8802-4466-93be-eef321c6afc8", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c", - "name": "66216902-aaaf-4676-b93d-b82b37d2b85c", - "status": "InProgress", - "startTime": null, - "endTime": null, - "percentComplete": null, - "properties": null, - "error": null - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-698b01c4d7ce5a44864b301a8dc382c4-20e1d372efcbd246-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ec5e07e11a66442fac1170c506ecd0ca", + "traceparent": "00-91f50a9c173a7bb6ab90fe448b73c5d2-a05b04b9e6fb152a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1aa51c1a07c02b4926072963ea9f2e78", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "ec5e07e11a66442fac1170c506ecd0ca", + "client-request-id": "1aa51c1a07c02b4926072963ea9f2e78", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:34:56 GMT", + "Date": "Wed, 26 Oct 2022 05:48:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b98e5114-5138-4d95-b175-0fdde9d1e572", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "9ad64e39-9219-4acc-9e54-1cd86aab2f67", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T033456Z:b98e5114-5138-4d95-b175-0fdde9d1e572", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "8dda8f75-4123-4128-b805-4c145826bdb6", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "a5401ef0-2dcc-4717-90e1-b4abd27c055a", + "x-ms-routing-request-id": "WESTUS2:20221026T054828Z:8dda8f75-4123-4128-b805-4c145826bdb6", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c", - "name": "66216902-aaaf-4676-b93d-b82b37d2b85c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a", + "name": "82d12b74-e946-4e1b-b9ec-04a94b39c73a", "status": "InProgress", "startTime": null, "endTime": null, @@ -273,38 +219,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-698b01c4d7ce5a44864b301a8dc382c4-04cbb7a41dcb154a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "23e7534f7d6c5790aa33f34254f4a10a", + "traceparent": "00-91f50a9c173a7bb6ab90fe448b73c5d2-547c53140c8bd25d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "05044e5161029930b145676f865859b2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "23e7534f7d6c5790aa33f34254f4a10a", + "client-request-id": "05044e5161029930b145676f865859b2", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:34:57 GMT", + "Date": "Wed, 26 Oct 2022 05:48:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b08c65ca-9478-4004-860e-4b38a6cae49f", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "c40f1c8a-bd33-4847-8c66-229483161199", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T033458Z:b08c65ca-9478-4004-860e-4b38a6cae49f", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "b48bae84-3f4e-4b40-8117-7b9a95ec27b9", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "8f3175f6-2046-4164-9fde-8f4ecf1d2a1b", + "x-ms-routing-request-id": "WESTUS2:20221026T054829Z:b48bae84-3f4e-4b40-8117-7b9a95ec27b9", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c", - "name": "66216902-aaaf-4676-b93d-b82b37d2b85c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a", + "name": "82d12b74-e946-4e1b-b9ec-04a94b39c73a", "status": "InProgress", "startTime": null, "endTime": null, @@ -314,38 +260,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-698b01c4d7ce5a44864b301a8dc382c4-c0a46997bfff7844-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "950cdffca8f3e874d8eb0e2c4a915487", + "traceparent": "00-91f50a9c173a7bb6ab90fe448b73c5d2-866e58637ca94493-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a3ff7b2eb54a403ef2db387307913205", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "950cdffca8f3e874d8eb0e2c4a915487", + "client-request-id": "a3ff7b2eb54a403ef2db387307913205", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:34:58 GMT", + "Date": "Wed, 26 Oct 2022 05:48:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a24d2aae-9378-4b96-9827-32969a41ce5e", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "d0818127-faf0-4c97-bdf4-2a1607c564fc", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T033459Z:a24d2aae-9378-4b96-9827-32969a41ce5e", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "8ab6b88c-1089-46ea-9004-daf42cb6aa04", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "0100a597-8c88-42f7-b876-af5ad8fc9638", + "x-ms-routing-request-id": "WESTUS2:20221026T054830Z:8ab6b88c-1089-46ea-9004-daf42cb6aa04", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c", - "name": "66216902-aaaf-4676-b93d-b82b37d2b85c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a", + "name": "82d12b74-e946-4e1b-b9ec-04a94b39c73a", "status": "InProgress", "startTime": null, "endTime": null, @@ -355,38 +301,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-698b01c4d7ce5a44864b301a8dc382c4-5b905c90863d2242-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a04011f01ca563757707413327ecefb7", + "traceparent": "00-91f50a9c173a7bb6ab90fe448b73c5d2-21270399152adfc7-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3d853f4cf41bb880ec0b697a9fdaa5cd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "a04011f01ca563757707413327ecefb7", + "client-request-id": "3d853f4cf41bb880ec0b697a9fdaa5cd", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:35:01 GMT", + "Date": "Wed, 26 Oct 2022 05:48:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "da2b005f-54e7-4b95-8618-ab358dde351c", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "c5687e84-921d-4905-b5f5-4ecffec8dd99", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T033501Z:da2b005f-54e7-4b95-8618-ab358dde351c", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "87c7b848-fb3c-4dad-b4d1-1d064507c4b6", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "af8e28bd-9d11-494e-aee5-338cd4ff16e7", + "x-ms-routing-request-id": "WESTUS2:20221026T054831Z:87c7b848-fb3c-4dad-b4d1-1d064507c4b6", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c", - "name": "66216902-aaaf-4676-b93d-b82b37d2b85c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a", + "name": "82d12b74-e946-4e1b-b9ec-04a94b39c73a", "status": "InProgress", "startTime": null, "endTime": null, @@ -396,38 +342,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-698b01c4d7ce5a44864b301a8dc382c4-21d10486f4da0f4c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "27c9656f3ae0a7d7dfff4a816e630d19", + "traceparent": "00-91f50a9c173a7bb6ab90fe448b73c5d2-8744433e9c2ce7a3-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6f3476ad8aa09b2e0fc4122629bc9220", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "27c9656f3ae0a7d7dfff4a816e630d19", + "client-request-id": "6f3476ad8aa09b2e0fc4122629bc9220", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:35:05 GMT", + "Date": "Wed, 26 Oct 2022 05:48:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a02f604b-9c13-4d94-89d0-6ff7f315f7eb", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "05df770a-7ff6-4bae-9966-1c549be48e9b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T033506Z:a02f604b-9c13-4d94-89d0-6ff7f315f7eb", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "5516afec-2f2f-4e43-84c8-2eef07422a55", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "06fbb2af-2965-405b-ba9d-2a57b0bb257f", + "x-ms-routing-request-id": "WESTUS2:20221026T054833Z:5516afec-2f2f-4e43-84c8-2eef07422a55", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c", - "name": "66216902-aaaf-4676-b93d-b82b37d2b85c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a", + "name": "82d12b74-e946-4e1b-b9ec-04a94b39c73a", "status": "InProgress", "startTime": null, "endTime": null, @@ -437,38 +383,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-698b01c4d7ce5a44864b301a8dc382c4-d300f6a187a07447-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "42526bde00b4df6469a81eeb6640c1ec", + "traceparent": "00-91f50a9c173a7bb6ab90fe448b73c5d2-39767cd0f4217de6-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "472361131cd33a97fb46b63f4cc4a118", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "42526bde00b4df6469a81eeb6640c1ec", + "client-request-id": "472361131cd33a97fb46b63f4cc4a118", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:35:13 GMT", + "Date": "Wed, 26 Oct 2022 05:48:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a9d284cd-d309-4c9e-a7a2-4dcc1baec0dc", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "43f8b769-a5a5-4ea7-b4a9-986a6ac61194", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T033514Z:a9d284cd-d309-4c9e-a7a2-4dcc1baec0dc", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "489633ed-68e4-4b7d-b073-b85151b31e20", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "b60bf544-b0e5-4223-9518-eed887774a89", + "x-ms-routing-request-id": "WESTUS2:20221026T054837Z:489633ed-68e4-4b7d-b073-b85151b31e20", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c", - "name": "66216902-aaaf-4676-b93d-b82b37d2b85c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a", + "name": "82d12b74-e946-4e1b-b9ec-04a94b39c73a", "status": "InProgress", "startTime": null, "endTime": null, @@ -478,38 +424,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-698b01c4d7ce5a44864b301a8dc382c4-5e2f867ecbc06246-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e4bc57fb2dc8b6a73999c0a6d2f4f414", + "traceparent": "00-91f50a9c173a7bb6ab90fe448b73c5d2-f1b72f922c651f6c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "91c66a36c35cc16511e92d56e2598f30", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "e4bc57fb2dc8b6a73999c0a6d2f4f414", + "client-request-id": "91c66a36c35cc16511e92d56e2598f30", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:35:30 GMT", + "Date": "Wed, 26 Oct 2022 05:48:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a037254f-169b-4f22-933e-947b40ca4ea1", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "1d199e2d-38e9-4958-a968-1566cac79aff", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T033530Z:a037254f-169b-4f22-933e-947b40ca4ea1", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "babab252-7352-4a5d-9b06-57f1371da09c", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "54c1235b-0abd-4fa2-98c9-00eab08538b8", + "x-ms-routing-request-id": "WESTUS2:20221026T054846Z:babab252-7352-4a5d-9b06-57f1371da09c", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c", - "name": "66216902-aaaf-4676-b93d-b82b37d2b85c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a", + "name": "82d12b74-e946-4e1b-b9ec-04a94b39c73a", "status": "InProgress", "startTime": null, "endTime": null, @@ -519,38 +465,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-698b01c4d7ce5a44864b301a8dc382c4-27260f91f874ef4a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "bb5428faac9a6e0300e9bd381beb409e", + "traceparent": "00-91f50a9c173a7bb6ab90fe448b73c5d2-ed93f49bde829ec2-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3d6748795db791f9defa745ad4ef4f4b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "bb5428faac9a6e0300e9bd381beb409e", + "client-request-id": "3d6748795db791f9defa745ad4ef4f4b", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:36:02 GMT", + "Date": "Wed, 26 Oct 2022 05:49:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4e8fc0a6-821e-4710-ab7b-98afce0e7970", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "3c3515c6-a0e1-41a7-b911-f7fcdbf94357", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T033603Z:4e8fc0a6-821e-4710-ab7b-98afce0e7970", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "52e3246b-e89f-4d00-a00f-cf52d166ae66", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "cc1aab48-ecd6-4edf-8872-ed0e56e05165", + "x-ms-routing-request-id": "WESTUS2:20221026T054902Z:52e3246b-e89f-4d00-a00f-cf52d166ae66", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c", - "name": "66216902-aaaf-4676-b93d-b82b37d2b85c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a", + "name": "82d12b74-e946-4e1b-b9ec-04a94b39c73a", "status": "InProgress", "startTime": null, "endTime": null, @@ -560,38 +506,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-698b01c4d7ce5a44864b301a8dc382c4-1ac46a0a34ac8945-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "17855e3e28a6b150c49b081a40be0d75", + "traceparent": "00-91f50a9c173a7bb6ab90fe448b73c5d2-7f6b72094305d7cd-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "bef0f92300f650c4fc6136eaee4157a1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "17855e3e28a6b150c49b081a40be0d75", + "client-request-id": "bef0f92300f650c4fc6136eaee4157a1", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:36:35 GMT", + "Date": "Wed, 26 Oct 2022 05:49:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7f9dd4da-8c7c-41ce-9bd6-2409d4982878", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "fa5fa485-57b6-459a-a322-f137a47311b4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T033635Z:7f9dd4da-8c7c-41ce-9bd6-2409d4982878", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "e11bcd2a-a746-4f3c-80f0-945e6da360ca", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "b3d5e93d-409f-4a43-a5e5-bbddaac9b417", + "x-ms-routing-request-id": "WESTUS2:20221026T054934Z:e11bcd2a-a746-4f3c-80f0-945e6da360ca", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c", - "name": "66216902-aaaf-4676-b93d-b82b37d2b85c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a", + "name": "82d12b74-e946-4e1b-b9ec-04a94b39c73a", "status": "InProgress", "startTime": null, "endTime": null, @@ -601,38 +547,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-698b01c4d7ce5a44864b301a8dc382c4-abec687b1ee35b4c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3ef10ab305ec4f52534de3de6f6e9a4e", + "traceparent": "00-91f50a9c173a7bb6ab90fe448b73c5d2-b6a73b76344a055f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "03c586b7635dd8617034b2614f0aed22", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "3ef10ab305ec4f52534de3de6f6e9a4e", + "client-request-id": "03c586b7635dd8617034b2614f0aed22", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:37:07 GMT", + "Date": "Wed, 26 Oct 2022 05:50:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6588dfc5-de6d-45cb-a2e9-0e494149a9ff", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "7ed96c49-7988-4b08-8150-cbc074e99efb", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T033707Z:6588dfc5-de6d-45cb-a2e9-0e494149a9ff", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "33569d79-6d75-4208-9ed8-c0795fc4c323", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "88d6f538-20ad-4ec3-8aef-65e3499e8e8d", + "x-ms-routing-request-id": "WESTUS2:20221026T055006Z:33569d79-6d75-4208-9ed8-c0795fc4c323", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c", - "name": "66216902-aaaf-4676-b93d-b82b37d2b85c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a", + "name": "82d12b74-e946-4e1b-b9ec-04a94b39c73a", "status": "InProgress", "startTime": null, "endTime": null, @@ -642,38 +588,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-698b01c4d7ce5a44864b301a8dc382c4-5a97b2ed9c4c504a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "74682259dc6ed16dd7a2f7fea3e82e42", + "traceparent": "00-91f50a9c173a7bb6ab90fe448b73c5d2-037bea71659dc809-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e933e299d069783a84164055270ea29d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "74682259dc6ed16dd7a2f7fea3e82e42", + "client-request-id": "e933e299d069783a84164055270ea29d", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:37:40 GMT", + "Date": "Wed, 26 Oct 2022 05:50:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "db42d4a1-fa63-4322-b751-798b937a6dff", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "3c1b5ca3-eb24-4fff-ae63-a530a1fd332a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T033740Z:db42d4a1-fa63-4322-b751-798b937a6dff", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "72b439aa-9d53-4f37-a9b3-6b11cbbfd88a", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "32739945-18fb-4d53-a497-13b117d5eefb", + "x-ms-routing-request-id": "WESTUS2:20221026T055038Z:72b439aa-9d53-4f37-a9b3-6b11cbbfd88a", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c", - "name": "66216902-aaaf-4676-b93d-b82b37d2b85c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a", + "name": "82d12b74-e946-4e1b-b9ec-04a94b39c73a", "status": "InProgress", "startTime": null, "endTime": null, @@ -683,38 +629,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-698b01c4d7ce5a44864b301a8dc382c4-eef3d45f0ddad346-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "118448dc01fa38b20b36c45944714255", + "traceparent": "00-91f50a9c173a7bb6ab90fe448b73c5d2-7e14591b3cc614f7-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4ea3d2a34b29bfed97174ec14e6301f1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "118448dc01fa38b20b36c45944714255", + "client-request-id": "4ea3d2a34b29bfed97174ec14e6301f1", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:38:11 GMT", + "Date": "Wed, 26 Oct 2022 05:51:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "977be3fa-112f-4055-bdc3-60c08e1b3d32", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "be33e687-23de-46fc-a48a-e5aa58ab4c7f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T033812Z:977be3fa-112f-4055-bdc3-60c08e1b3d32", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "48815b4a-bef4-4953-b05d-26b7584dd83a", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "63c6f8e8-95a3-415e-8453-0269d6fc5224", + "x-ms-routing-request-id": "WESTUS2:20221026T055110Z:48815b4a-bef4-4953-b05d-26b7584dd83a", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c", - "name": "66216902-aaaf-4676-b93d-b82b37d2b85c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a", + "name": "82d12b74-e946-4e1b-b9ec-04a94b39c73a", "status": "InProgress", "startTime": null, "endTime": null, @@ -724,38 +670,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-698b01c4d7ce5a44864b301a8dc382c4-1d5af2f9f05c4a46-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1dc1ba009856d6069d1f67490d53ab6b", + "traceparent": "00-91f50a9c173a7bb6ab90fe448b73c5d2-aaaca5278e660bdd-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0c5114746e0ee7384c4d7f46220cb061", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "1dc1ba009856d6069d1f67490d53ab6b", + "client-request-id": "0c5114746e0ee7384c4d7f46220cb061", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:38:43 GMT", + "Date": "Wed, 26 Oct 2022 05:51:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "066be766-3189-47ac-8db8-7ecaa73c9f96", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "9ec91a35-d817-4329-9727-bec15238da1f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T033844Z:066be766-3189-47ac-8db8-7ecaa73c9f96", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "d729f45b-a2b2-4b66-b53d-839b51e804ad", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "ab8e4afb-8217-4594-a384-e82859bc9492", + "x-ms-routing-request-id": "WESTUS2:20221026T055142Z:d729f45b-a2b2-4b66-b53d-839b51e804ad", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c", - "name": "66216902-aaaf-4676-b93d-b82b37d2b85c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a", + "name": "82d12b74-e946-4e1b-b9ec-04a94b39c73a", "status": "InProgress", "startTime": null, "endTime": null, @@ -765,38 +711,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-698b01c4d7ce5a44864b301a8dc382c4-085c9890967c7a49-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "2602a11e89ea5854702f683818138c65", + "traceparent": "00-91f50a9c173a7bb6ab90fe448b73c5d2-1a0e8edb6793b8e1-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7cbe14919f674df8f473515182782921", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "2602a11e89ea5854702f683818138c65", + "client-request-id": "7cbe14919f674df8f473515182782921", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:39:16 GMT", + "Date": "Wed, 26 Oct 2022 05:52:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c3fc2f49-2bd3-4323-a458-d641f2176990", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "b8eb93bb-46ee-4ec5-b8aa-311b75184960", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T033917Z:c3fc2f49-2bd3-4323-a458-d641f2176990", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "16b43a9d-5e5e-443d-a998-86d0cd487cad", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "d7c43e7a-9af2-4632-9012-643c5cff14c9", + "x-ms-routing-request-id": "WESTUS2:20221026T055214Z:16b43a9d-5e5e-443d-a998-86d0cd487cad", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c", - "name": "66216902-aaaf-4676-b93d-b82b37d2b85c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a", + "name": "82d12b74-e946-4e1b-b9ec-04a94b39c73a", "status": "InProgress", "startTime": null, "endTime": null, @@ -806,38 +752,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-698b01c4d7ce5a44864b301a8dc382c4-539a8658a283114e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e9fda260112743ec41ad74da99682bb8", + "traceparent": "00-91f50a9c173a7bb6ab90fe448b73c5d2-3dc85cf5d1228252-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "13e04f1596bd348f99bb01dbcca79d8b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "e9fda260112743ec41ad74da99682bb8", + "client-request-id": "13e04f1596bd348f99bb01dbcca79d8b", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:39:49 GMT", + "Date": "Wed, 26 Oct 2022 05:52:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "363e4128-8058-4813-b439-9aaadccdc379", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "50d6a293-9aff-4227-8536-6f39eda5c67b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T033949Z:363e4128-8058-4813-b439-9aaadccdc379", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "e3e7167e-417b-45be-8d05-5c0711940700", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "e0ccd58f-d135-4970-8714-c568bf1daecd", + "x-ms-routing-request-id": "WESTUS2:20221026T055246Z:e3e7167e-417b-45be-8d05-5c0711940700", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c", - "name": "66216902-aaaf-4676-b93d-b82b37d2b85c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a", + "name": "82d12b74-e946-4e1b-b9ec-04a94b39c73a", "status": "InProgress", "startTime": null, "endTime": null, @@ -847,38 +793,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-698b01c4d7ce5a44864b301a8dc382c4-5aecd3a0a0d34443-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a33a598b1b6f776b6669ad2630cebe89", + "traceparent": "00-91f50a9c173a7bb6ab90fe448b73c5d2-9d29321fbaeb6b41-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "392fec6784a5d5891b03189b1de764d3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "a33a598b1b6f776b6669ad2630cebe89", + "client-request-id": "392fec6784a5d5891b03189b1de764d3", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:40:21 GMT", + "Date": "Wed, 26 Oct 2022 05:53:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ced26132-6db2-43ba-83c0-850709d882e7", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "d11b5fab-3bd3-4b30-acb9-31212af50ad6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T034021Z:ced26132-6db2-43ba-83c0-850709d882e7", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "a6ea09af-1f30-48cb-bf7c-33102ead1289", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "85639eb6-dc2d-4fc6-9c93-346c1f5e5850", + "x-ms-routing-request-id": "WESTUS2:20221026T055318Z:a6ea09af-1f30-48cb-bf7c-33102ead1289", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c", - "name": "66216902-aaaf-4676-b93d-b82b37d2b85c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a", + "name": "82d12b74-e946-4e1b-b9ec-04a94b39c73a", "status": "InProgress", "startTime": null, "endTime": null, @@ -888,38 +834,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-698b01c4d7ce5a44864b301a8dc382c4-e92aaefd6b74e945-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6be90292c1560d43b4bee43c1579be08", + "traceparent": "00-91f50a9c173a7bb6ab90fe448b73c5d2-3a33fc84b074add0-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d3305d239d2bfba48589e3ab9d1d804d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "6be90292c1560d43b4bee43c1579be08", + "client-request-id": "d3305d239d2bfba48589e3ab9d1d804d", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:40:53 GMT", + "Date": "Wed, 26 Oct 2022 05:53:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ce46812e-6cbd-4300-ba56-448457b0109b", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "de0d8b7e-ae40-4a64-bfc8-fcf8670a6e16", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T034054Z:ce46812e-6cbd-4300-ba56-448457b0109b", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "c02ae926-f1d7-45cd-ae08-1d7943909631", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "35e76ed9-ab7c-4960-8fa1-bc2d91f68b8c", + "x-ms-routing-request-id": "WESTUS2:20221026T055351Z:c02ae926-f1d7-45cd-ae08-1d7943909631", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c", - "name": "66216902-aaaf-4676-b93d-b82b37d2b85c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a", + "name": "82d12b74-e946-4e1b-b9ec-04a94b39c73a", "status": "InProgress", "startTime": null, "endTime": null, @@ -929,38 +875,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-698b01c4d7ce5a44864b301a8dc382c4-051b3297c215ed4a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "bfadb004e9d944f5368582bd63c51273", + "traceparent": "00-91f50a9c173a7bb6ab90fe448b73c5d2-ba30bf21dcdafc5c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "96eac6d5ef48917cc50bf8b97df417b1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "bfadb004e9d944f5368582bd63c51273", + "client-request-id": "96eac6d5ef48917cc50bf8b97df417b1", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:41:26 GMT", + "Date": "Wed, 26 Oct 2022 05:54:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e9536ca7-023e-4060-8533-b71311df1159", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "4056fae9-fd5b-4108-80d6-96cd9a020a59", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T034127Z:e9536ca7-023e-4060-8533-b71311df1159", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "b57891eb-80aa-4ad3-829c-af0e6ee78b5e", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "ae24182d-d863-482b-8e90-07060ceb721c", + "x-ms-routing-request-id": "WESTUS2:20221026T055423Z:b57891eb-80aa-4ad3-829c-af0e6ee78b5e", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c", - "name": "66216902-aaaf-4676-b93d-b82b37d2b85c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a", + "name": "82d12b74-e946-4e1b-b9ec-04a94b39c73a", "status": "InProgress", "startTime": null, "endTime": null, @@ -970,38 +916,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-698b01c4d7ce5a44864b301a8dc382c4-d377530f04736c4c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9747eaefbf7ec961152cefb0362e62ed", + "traceparent": "00-91f50a9c173a7bb6ab90fe448b73c5d2-6e9d281e06d822b1-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6fb72e57ca76c95f4733b41ba0dd38fd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "9747eaefbf7ec961152cefb0362e62ed", + "client-request-id": "6fb72e57ca76c95f4733b41ba0dd38fd", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:41:59 GMT", + "Date": "Wed, 26 Oct 2022 05:54:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "01bbdf30-9454-41d3-a2d7-218c0d99476e", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "621d6d24-e4ba-4773-8ff4-6fad2eef5a3d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T034159Z:01bbdf30-9454-41d3-a2d7-218c0d99476e", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "0cc24256-6ffc-4851-9e94-a6006c074c4d", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "c4e7f0e6-22c7-4d55-a30c-f5c02f272932", + "x-ms-routing-request-id": "WESTUS2:20221026T055455Z:0cc24256-6ffc-4851-9e94-a6006c074c4d", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c", - "name": "66216902-aaaf-4676-b93d-b82b37d2b85c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a", + "name": "82d12b74-e946-4e1b-b9ec-04a94b39c73a", "status": "InProgress", "startTime": null, "endTime": null, @@ -1011,38 +957,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-698b01c4d7ce5a44864b301a8dc382c4-3c9f1136a3ad5c42-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "8022a5aafe21a9b00ca534d03f85a9ef", + "traceparent": "00-91f50a9c173a7bb6ab90fe448b73c5d2-aade92497bc784bd-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "56c5ca83cefd338ae19f0d20a4ea7d90", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "8022a5aafe21a9b00ca534d03f85a9ef", + "client-request-id": "56c5ca83cefd338ae19f0d20a4ea7d90", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:42:31 GMT", + "Date": "Wed, 26 Oct 2022 05:55:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a101247b-4a6b-4e28-8e5b-13ad5caa08ce", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "625b43a5-39e7-44b1-966c-74c1d54304e5", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T034231Z:a101247b-4a6b-4e28-8e5b-13ad5caa08ce", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "4ee55a3b-3003-47a2-99e8-e60e6012a5a7", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "a825d41c-542b-4850-a8bc-c265e42e78ee", + "x-ms-routing-request-id": "WESTUS2:20221026T055527Z:4ee55a3b-3003-47a2-99e8-e60e6012a5a7", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c", - "name": "66216902-aaaf-4676-b93d-b82b37d2b85c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a", + "name": "82d12b74-e946-4e1b-b9ec-04a94b39c73a", "status": "InProgress", "startTime": null, "endTime": null, @@ -1052,38 +998,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-698b01c4d7ce5a44864b301a8dc382c4-ef5127b71a275d41-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "2a4d71ab263144894ee3aaacf9440e07", + "traceparent": "00-91f50a9c173a7bb6ab90fe448b73c5d2-2a493284d7ce2d0b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6f54327111650bd666204e143a60f1e8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "2a4d71ab263144894ee3aaacf9440e07", + "client-request-id": "6f54327111650bd666204e143a60f1e8", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:43:03 GMT", + "Date": "Wed, 26 Oct 2022 05:55:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "17b0edf8-bc21-424a-afcb-09bec14d5a0d", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "adffa285-f8f7-48d2-8512-6bf4167609df", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T034304Z:17b0edf8-bc21-424a-afcb-09bec14d5a0d", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "ccafbec3-9bc0-4f97-82ab-2f2584f01aed", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "59fa3841-f2f1-48b6-af37-2ae3544e6175", + "x-ms-routing-request-id": "WESTUS2:20221026T055559Z:ccafbec3-9bc0-4f97-82ab-2f2584f01aed", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c", - "name": "66216902-aaaf-4676-b93d-b82b37d2b85c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a", + "name": "82d12b74-e946-4e1b-b9ec-04a94b39c73a", "status": "InProgress", "startTime": null, "endTime": null, @@ -1093,38 +1039,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-698b01c4d7ce5a44864b301a8dc382c4-6c8ed7e14c3a4043-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "be12952392a2f0523a9e8ad98a918a8f", + "traceparent": "00-91f50a9c173a7bb6ab90fe448b73c5d2-9ee659e46acdaca3-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b236fad2c02e88b3a3848dd7bc3f255c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "be12952392a2f0523a9e8ad98a918a8f", + "client-request-id": "b236fad2c02e88b3a3848dd7bc3f255c", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:43:35 GMT", + "Date": "Wed, 26 Oct 2022 05:56:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "be959981-aac0-478f-9e6c-c7ba8bf2c0a2", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "5f767e24-b00d-4bcc-994a-66f48a7f9f06", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T034336Z:be959981-aac0-478f-9e6c-c7ba8bf2c0a2", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "5d3a8272-8ac2-4855-9a55-30aa81a06848", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "7e26c843-381d-42f6-8983-2aadf5627800", + "x-ms-routing-request-id": "WESTUS2:20221026T055631Z:5d3a8272-8ac2-4855-9a55-30aa81a06848", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c", - "name": "66216902-aaaf-4676-b93d-b82b37d2b85c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a", + "name": "82d12b74-e946-4e1b-b9ec-04a94b39c73a", "status": "InProgress", "startTime": null, "endTime": null, @@ -1134,38 +1080,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-698b01c4d7ce5a44864b301a8dc382c4-4b33077394c4ba40-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c505ff8238e184bb1bde323d5403afc7", + "traceparent": "00-91f50a9c173a7bb6ab90fe448b73c5d2-4b7c8cc9045e1d6a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6da923b5c9887198f4b9f0dd8076f880", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "c505ff8238e184bb1bde323d5403afc7", + "client-request-id": "6da923b5c9887198f4b9f0dd8076f880", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:44:08 GMT", + "Date": "Wed, 26 Oct 2022 05:57:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "97426338-7b2d-4c52-a57f-f621ca635d57", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "7df6ae27-2716-41f9-af79-5d6af2432d8f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T034408Z:97426338-7b2d-4c52-a57f-f621ca635d57", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "8f1f73b2-1698-448f-86ba-1e52efd1e05a", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "f9cd9e1a-e94c-4770-bfe8-8b7f6479d614", + "x-ms-routing-request-id": "WESTUS2:20221026T055703Z:8f1f73b2-1698-448f-86ba-1e52efd1e05a", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c", - "name": "66216902-aaaf-4676-b93d-b82b37d2b85c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a", + "name": "82d12b74-e946-4e1b-b9ec-04a94b39c73a", "status": "InProgress", "startTime": null, "endTime": null, @@ -1175,38 +1121,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-698b01c4d7ce5a44864b301a8dc382c4-45ee3699cb6c244d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a9ad2c96eb72194c1e5cef939bb0b9bd", + "traceparent": "00-91f50a9c173a7bb6ab90fe448b73c5d2-7512cc4a92933f00-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a94d25adcbb4b0627ecccce183ff4f27", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "a9ad2c96eb72194c1e5cef939bb0b9bd", + "client-request-id": "a94d25adcbb4b0627ecccce183ff4f27", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:44:40 GMT", + "Date": "Wed, 26 Oct 2022 05:57:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ae48a167-cb44-4595-bff2-e2064ed4eee9", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "3f72e2a0-3909-468f-b46d-3bbf6b042da4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T034440Z:ae48a167-cb44-4595-bff2-e2064ed4eee9", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "99d9565e-0305-4ab6-b648-32422e64fe10", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "958ef383-0e4b-43b2-b053-b3a337663351", + "x-ms-routing-request-id": "WESTUS2:20221026T055735Z:99d9565e-0305-4ab6-b648-32422e64fe10", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c", - "name": "66216902-aaaf-4676-b93d-b82b37d2b85c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a", + "name": "82d12b74-e946-4e1b-b9ec-04a94b39c73a", "status": "InProgress", "startTime": null, "endTime": null, @@ -1216,38 +1162,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-698b01c4d7ce5a44864b301a8dc382c4-e4e899741a8f7447-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "fa291a59493feb26da8ea3c460149c37", + "traceparent": "00-91f50a9c173a7bb6ab90fe448b73c5d2-e1c135b6accd3daa-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "175ef1fb83b6095f62c4be75d0d6072d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "fa291a59493feb26da8ea3c460149c37", + "client-request-id": "175ef1fb83b6095f62c4be75d0d6072d", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:45:13 GMT", + "Date": "Wed, 26 Oct 2022 05:58:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9a1a045d-e82e-48ad-b79d-67be3dfe7835", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "450fb827-6bb6-43d3-8eb3-b24cb51349a6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T034513Z:9a1a045d-e82e-48ad-b79d-67be3dfe7835", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "f5988858-d31f-4535-8c30-d765aba210c7", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "a185b971-a4f1-4438-aa3e-ae29ebdf7fb7", + "x-ms-routing-request-id": "WESTUS2:20221026T055807Z:f5988858-d31f-4535-8c30-d765aba210c7", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c", - "name": "66216902-aaaf-4676-b93d-b82b37d2b85c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a", + "name": "82d12b74-e946-4e1b-b9ec-04a94b39c73a", "status": "InProgress", "startTime": null, "endTime": null, @@ -1257,38 +1203,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-698b01c4d7ce5a44864b301a8dc382c4-182776c8c445f441-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5e42c3eee0e3971cb3eba6854827e86a", + "traceparent": "00-91f50a9c173a7bb6ab90fe448b73c5d2-8b9004ee6a126781-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "97290d8b7bf1eaa8c1f9eebcfcb7eef4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "5e42c3eee0e3971cb3eba6854827e86a", + "client-request-id": "97290d8b7bf1eaa8c1f9eebcfcb7eef4", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:45:45 GMT", + "Date": "Wed, 26 Oct 2022 05:58:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f804b1ac-f0d1-4487-b1bf-fb0a0be805a9", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "d2b9610a-8894-4f1f-ad32-9c275c99584e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T034545Z:f804b1ac-f0d1-4487-b1bf-fb0a0be805a9", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "27181eb1-ce7f-4383-aec6-92a0b00ca0bf", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "f7cdd3a7-e85c-4c98-bdb2-d49f9b4b5314", + "x-ms-routing-request-id": "WESTUS2:20221026T055839Z:27181eb1-ce7f-4383-aec6-92a0b00ca0bf", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c", - "name": "66216902-aaaf-4676-b93d-b82b37d2b85c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a", + "name": "82d12b74-e946-4e1b-b9ec-04a94b39c73a", "status": "InProgress", "startTime": null, "endTime": null, @@ -1298,38 +1244,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-698b01c4d7ce5a44864b301a8dc382c4-15a0f21e82d4f24d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "39e37424b5d94d8706c1cfe44888b909", + "traceparent": "00-91f50a9c173a7bb6ab90fe448b73c5d2-24b23d492b61fd22-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "8ee2c86ae11729c9c54347f00cede0a8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "39e37424b5d94d8706c1cfe44888b909", + "client-request-id": "8ee2c86ae11729c9c54347f00cede0a8", "Content-Length": "361", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:46:16 GMT", + "Date": "Wed, 26 Oct 2022 05:59:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ed2d7e14-cbbb-4055-8420-4bba65391e0b", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "7b0733b2-359b-4a21-a981-0600a1360688", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T034617Z:ed2d7e14-cbbb-4055-8420-4bba65391e0b", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "aa331eae-be62-4353-97fe-ace78e79336a", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "b7b52029-e29d-411c-ac3e-0954af94f774", + "x-ms-routing-request-id": "WESTUS2:20221026T055912Z:aa331eae-be62-4353-97fe-ace78e79336a", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/66216902-aaaf-4676-b93d-b82b37d2b85c", - "name": "66216902-aaaf-4676-b93d-b82b37d2b85c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/82d12b74-e946-4e1b-b9ec-04a94b39c73a", + "name": "82d12b74-e946-4e1b-b9ec-04a94b39c73a", "status": "Succeeded", "startTime": null, "endTime": null, @@ -1339,43 +1285,43 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/redis/RedisGeo15985?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4023/providers/Microsoft.Cache/redis/RedisGeo15727?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-698b01c4d7ce5a44864b301a8dc382c4-eed0c5a71882354b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d8a5b8bf5b6e79d9fe924754a2a0a2b2", + "traceparent": "00-91f50a9c173a7bb6ab90fe448b73c5d2-e981322b777bcbdd-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "76569ec4b7d67f36497355bd94a30cab", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "d8a5b8bf5b6e79d9fe924754a2a0a2b2", - "Content-Length": "773", + "client-request-id": "76569ec4b7d67f36497355bd94a30cab", + "Content-Length": "770", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 03:46:18 GMT", + "Date": "Wed, 26 Oct 2022 05:59:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "55ca2eab-c493-40b7-a0fd-4c9754fdd7ff", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "8a23dd4c-6cf6-456a-a66c-bebfe039eef2", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T034618Z:55ca2eab-c493-40b7-a0fd-4c9754fdd7ff", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "f96d4f17-e35a-452c-b6a7-76ef84d11d91", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "789e3e98-80bb-4279-836a-462102471ebf", + "x-ms-routing-request-id": "WESTUS2:20221026T055912Z:f96d4f17-e35a-452c-b6a7-76ef84d11d91", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo15985", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4023/providers/Microsoft.Cache/Redis/RedisGeo15727", "location": "North Central US", - "name": "RedisGeo15985", + "name": "RedisGeo15727", "type": "Microsoft.Cache/Redis", "tags": {}, "properties": { "provisioningState": "Succeeded", - "redisVersion": "4.0.14", + "redisVersion": "6.0", "sku": { "name": "Premium", "family": "P", @@ -1402,7 +1348,7 @@ "maxmemory-delta": "642" }, "accessKeys": null, - "hostName": "RedisGeo15985.redis.cache.windows.net", + "hostName": "RedisGeo15727.redis.cache.windows.net", "port": 6379, "sslPort": 6380, "linkedServers": [] @@ -1410,16 +1356,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/redis/RedisGeo28516?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4023/providers/Microsoft.Cache/redis/RedisGeo21526?api-version=2022-06-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "95", "Content-Type": "application/json", - "traceparent": "00-56489141e71d504c9c31d695999043a3-f37478d984013e49-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "eb9f38a66331385d3bf4572210384f2a", + "traceparent": "00-054467a4ba5012398170802be4dc8d84-daa4d2aae9318c5d-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "080acad579f4a91643ffd1ad34b7ded4", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -1434,33 +1380,33 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "eb9f38a66331385d3bf4572210384f2a", - "Content-Length": "823", + "client-request-id": "080acad579f4a91643ffd1ad34b7ded4", + "Content-Length": "820", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 03:46:24 GMT", + "Date": "Wed, 26 Oct 2022 05:59:14 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/redis/RedisGeo28516?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4023/providers/Microsoft.Cache/redis/RedisGeo21526?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a58d5ee5-e0c8-432d-9aa5-75ffb616e30b", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "4513a247-f545-4e81-85ef-14fe2777aa2a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T034624Z:a58d5ee5-e0c8-432d-9aa5-75ffb616e30b", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "ebae5f76-7fa4-4449-9ed4-74188f465499", + "x-ms-ratelimit-remaining-subscription-writes": "1185", + "x-ms-request-id": "07f8bb1a-c455-44af-a88e-3d4159a8efa2", + "x-ms-routing-request-id": "WESTUS2:20221026T055914Z:ebae5f76-7fa4-4449-9ed4-74188f465499", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo28516", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4023/providers/Microsoft.Cache/Redis/RedisGeo21526", "location": "South Central US", - "name": "RedisGeo28516", + "name": "RedisGeo21526", "type": "Microsoft.Cache/Redis", "tags": {}, "properties": { "provisioningState": "Creating", - "redisVersion": "4.0.14", + "redisVersion": "6.0", "sku": { "name": "Premium", "family": "P", @@ -1490,7 +1436,7 @@ "primaryKey": "Sanitized", "secondaryKey": "Sanitized" }, - "hostName": "RedisGeo28516.redis.cache.windows.net", + "hostName": "RedisGeo21526.redis.cache.windows.net", "port": 6379, "sslPort": 6380, "linkedServers": [] @@ -1498,38 +1444,79 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-054467a4ba5012398170802be4dc8d84-01a15aa1c18bddbf-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "411a9c36d8e24bb488ac33d6e6884b91", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "411a9c36d8e24bb488ac33d6e6884b91", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 05:59:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8b8667de-bc50-4574-8617-11f33c055763", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "c60080cc-e56b-4095-88bd-14b7f05982aa", + "x-ms-routing-request-id": "WESTUS2:20221026T055914Z:8b8667de-bc50-4574-8617-11f33c055763", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2", + "name": "07f8bb1a-c455-44af-a88e-3d4159a8efa2", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-56489141e71d504c9c31d695999043a3-2cc149f218795b4b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0f3d1c1ecde95cd85a6d9c7a03b768c5", + "traceparent": "00-054467a4ba5012398170802be4dc8d84-1da8db7321c94850-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4ea48095aeab5d4aac57759134721c36", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "0f3d1c1ecde95cd85a6d9c7a03b768c5", + "client-request-id": "4ea48095aeab5d4aac57759134721c36", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:46:24 GMT", + "Date": "Wed, 26 Oct 2022 05:59:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "01f53daf-3833-48a1-99f9-c8ebf72d3b26", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-request-id": "19fcb857-88da-440b-b02a-041b2c81cdd6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T034624Z:01f53daf-3833-48a1-99f9-c8ebf72d3b26", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "b815869d-9cc7-4fc1-84a6-9029a0dd2dd3", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "daf61f10-59d4-4065-8d78-2966da4d8687", + "x-ms-routing-request-id": "WESTUS2:20221026T055915Z:b815869d-9cc7-4fc1-84a6-9029a0dd2dd3", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a", - "name": "4513a247-f545-4e81-85ef-14fe2777aa2a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2", + "name": "07f8bb1a-c455-44af-a88e-3d4159a8efa2", "status": "InProgress", "startTime": null, "endTime": null, @@ -1539,38 +1526,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-56489141e71d504c9c31d695999043a3-c0ceef1fd978674d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "06221c4212db96303cd550c62715c908", + "traceparent": "00-054467a4ba5012398170802be4dc8d84-600eae959303361c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "9777ae6a9d9d41f191acd5b44548cc0a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "06221c4212db96303cd550c62715c908", + "client-request-id": "9777ae6a9d9d41f191acd5b44548cc0a", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:46:25 GMT", + "Date": "Wed, 26 Oct 2022 05:59:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "654ca06b-d41a-4ae1-a1e8-70713a3a3b96", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "3c92a028-231d-4974-b588-84587e644052", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T034625Z:654ca06b-d41a-4ae1-a1e8-70713a3a3b96", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "e9526684-d1d5-472f-8ab5-9284f72f6705", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "89482589-2009-46e5-86cf-da3c40e11b14", + "x-ms-routing-request-id": "WESTUS2:20221026T055917Z:e9526684-d1d5-472f-8ab5-9284f72f6705", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a", - "name": "4513a247-f545-4e81-85ef-14fe2777aa2a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2", + "name": "07f8bb1a-c455-44af-a88e-3d4159a8efa2", "status": "InProgress", "startTime": null, "endTime": null, @@ -1580,38 +1567,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-56489141e71d504c9c31d695999043a3-5d0b84a98c1ee14b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f403f1493ffa6441c36935147381c5e3", + "traceparent": "00-054467a4ba5012398170802be4dc8d84-b24b9b82303bf2f4-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0b0db3164667877651bc958b62231716", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "f403f1493ffa6441c36935147381c5e3", + "client-request-id": "0b0db3164667877651bc958b62231716", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:46:27 GMT", + "Date": "Wed, 26 Oct 2022 05:59:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "006ae25b-76c9-4dff-aebe-8f425f8aeaed", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-request-id": "826de83d-ee99-466b-9fcf-996569e95991", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T034627Z:006ae25b-76c9-4dff-aebe-8f425f8aeaed", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "35df2b47-a6f7-4d44-a367-e1847a2856b9", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "4fd71ef8-6168-4f16-98a8-1d9bd4dba383", + "x-ms-routing-request-id": "WESTUS2:20221026T055918Z:35df2b47-a6f7-4d44-a367-e1847a2856b9", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a", - "name": "4513a247-f545-4e81-85ef-14fe2777aa2a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2", + "name": "07f8bb1a-c455-44af-a88e-3d4159a8efa2", "status": "InProgress", "startTime": null, "endTime": null, @@ -1621,38 +1608,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-56489141e71d504c9c31d695999043a3-606cdb589da29647-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "52047501a5110c8aeca6d2137c123445", + "traceparent": "00-054467a4ba5012398170802be4dc8d84-ddf2e8a35858966a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "376bfc90b311f7f48f63bcffd9961864", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "52047501a5110c8aeca6d2137c123445", + "client-request-id": "376bfc90b311f7f48f63bcffd9961864", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:46:28 GMT", + "Date": "Wed, 26 Oct 2022 05:59:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "59a978f2-5926-4a7c-af99-670d0639ce5d", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-request-id": "ba893715-8c81-49a2-9433-96c61dec6fd6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T034628Z:59a978f2-5926-4a7c-af99-670d0639ce5d", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "75da0420-01e2-4601-8073-0a582328a328", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "9442c9b0-63fe-445b-a363-9d0cf5525a38", + "x-ms-routing-request-id": "WESTUS2:20221026T055920Z:75da0420-01e2-4601-8073-0a582328a328", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a", - "name": "4513a247-f545-4e81-85ef-14fe2777aa2a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2", + "name": "07f8bb1a-c455-44af-a88e-3d4159a8efa2", "status": "InProgress", "startTime": null, "endTime": null, @@ -1662,38 +1649,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-56489141e71d504c9c31d695999043a3-73dd04f12828fb44-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "123094a374b403cadbbd4272dd1b23ba", + "traceparent": "00-054467a4ba5012398170802be4dc8d84-e2b8b9c2eeb7cf95-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "807a6b8a116424ce37ef46e00866de6e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "123094a374b403cadbbd4272dd1b23ba", + "client-request-id": "807a6b8a116424ce37ef46e00866de6e", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:46:30 GMT", + "Date": "Wed, 26 Oct 2022 05:59:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "994b3493-f5c3-4616-b2d8-3ca53661f8eb", - "x-ms-ratelimit-remaining-subscription-reads": "11962", - "x-ms-request-id": "f22b940c-7042-4525-bd50-0dbf03d0f579", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T034630Z:994b3493-f5c3-4616-b2d8-3ca53661f8eb", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "ca0ba95e-0d4b-4b54-9d1b-76088b5c2ae4", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "19977965-52fb-4426-82d8-db3adcf3bef7", + "x-ms-routing-request-id": "WESTUS2:20221026T055924Z:ca0ba95e-0d4b-4b54-9d1b-76088b5c2ae4", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a", - "name": "4513a247-f545-4e81-85ef-14fe2777aa2a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2", + "name": "07f8bb1a-c455-44af-a88e-3d4159a8efa2", "status": "InProgress", "startTime": null, "endTime": null, @@ -1703,38 +1690,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-56489141e71d504c9c31d695999043a3-c5e41ecd9c33be4e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b2c46d0f7711a3f767f607536d2de8b1", + "traceparent": "00-054467a4ba5012398170802be4dc8d84-b4779f356f59ef6c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4823be9495dc63f9be167c048977adbb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "b2c46d0f7711a3f767f607536d2de8b1", + "client-request-id": "4823be9495dc63f9be167c048977adbb", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:46:34 GMT", + "Date": "Wed, 26 Oct 2022 05:59:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "106958e9-c84a-4696-a9f5-5dab3cb73232", - "x-ms-ratelimit-remaining-subscription-reads": "11961", - "x-ms-request-id": "62843c8e-863c-4e69-8616-b05707fb86cd", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T034635Z:106958e9-c84a-4696-a9f5-5dab3cb73232", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "72b5db7d-058d-4e0e-9c21-d10c35854a8b", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "439eefe9-a9a3-4dd0-8dd6-0779ddb92201", + "x-ms-routing-request-id": "WESTUS2:20221026T055932Z:72b5db7d-058d-4e0e-9c21-d10c35854a8b", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a", - "name": "4513a247-f545-4e81-85ef-14fe2777aa2a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2", + "name": "07f8bb1a-c455-44af-a88e-3d4159a8efa2", "status": "InProgress", "startTime": null, "endTime": null, @@ -1744,38 +1731,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-56489141e71d504c9c31d695999043a3-c5612a1d929bb14e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "de71f034b3518d2eaa01775463182ed0", + "traceparent": "00-054467a4ba5012398170802be4dc8d84-59581ec98838f35d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f70031a396a87eb12d47ff216d14ef28", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "de71f034b3518d2eaa01775463182ed0", + "client-request-id": "f70031a396a87eb12d47ff216d14ef28", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:46:43 GMT", + "Date": "Wed, 26 Oct 2022 05:59:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4fe9b889-9dc0-4580-b095-75858fc82555", - "x-ms-ratelimit-remaining-subscription-reads": "11960", - "x-ms-request-id": "7259c20f-d631-4a8e-bafa-e35838a09a97", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T034643Z:4fe9b889-9dc0-4580-b095-75858fc82555", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "9f211091-ecb8-4749-815a-a8ead7db3896", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "d4bc0ec3-04bc-4df0-8da2-5fbf21b86206", + "x-ms-routing-request-id": "WESTUS2:20221026T055948Z:9f211091-ecb8-4749-815a-a8ead7db3896", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a", - "name": "4513a247-f545-4e81-85ef-14fe2777aa2a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2", + "name": "07f8bb1a-c455-44af-a88e-3d4159a8efa2", "status": "InProgress", "startTime": null, "endTime": null, @@ -1785,38 +1772,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-56489141e71d504c9c31d695999043a3-3e752ddcf046c04b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0f031883824d2b339d8dabbd6c7695ad", + "traceparent": "00-054467a4ba5012398170802be4dc8d84-8019b126c885dda6-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1a6b4d85d072f5877117c24e94ca9ac0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "0f031883824d2b339d8dabbd6c7695ad", + "client-request-id": "1a6b4d85d072f5877117c24e94ca9ac0", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:46:59 GMT", + "Date": "Wed, 26 Oct 2022 06:00:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0e4da12a-abea-40a1-9fe7-bba852381c54", - "x-ms-ratelimit-remaining-subscription-reads": "11959", - "x-ms-request-id": "3b709ccd-1192-43c7-a1b3-d2d4f353cac4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T034659Z:0e4da12a-abea-40a1-9fe7-bba852381c54", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "d56dd3d0-c252-4fee-b5b8-e05fe468282a", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "455022b0-f1c2-4a5b-836e-720925dcf55b", + "x-ms-routing-request-id": "WESTUS2:20221026T060020Z:d56dd3d0-c252-4fee-b5b8-e05fe468282a", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a", - "name": "4513a247-f545-4e81-85ef-14fe2777aa2a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2", + "name": "07f8bb1a-c455-44af-a88e-3d4159a8efa2", "status": "InProgress", "startTime": null, "endTime": null, @@ -1826,38 +1813,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-56489141e71d504c9c31d695999043a3-d2f2b57e5b809046-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ed3d90d444a95c693e37070f00a3404e", + "traceparent": "00-054467a4ba5012398170802be4dc8d84-da8a69df47c06654-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d63c8a41e665fdc50da51b9595d7f5aa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "ed3d90d444a95c693e37070f00a3404e", + "client-request-id": "d63c8a41e665fdc50da51b9595d7f5aa", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:47:31 GMT", + "Date": "Wed, 26 Oct 2022 06:00:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "372c9781-ac87-4a77-addd-868372b0d2db", - "x-ms-ratelimit-remaining-subscription-reads": "11958", - "x-ms-request-id": "461ac429-ead5-41fc-b9d3-17a3caa03fff", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T034732Z:372c9781-ac87-4a77-addd-868372b0d2db", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "2e9c0e08-1c45-4ad0-89ee-7dc814d1e6c5", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "83e362a5-2c68-4813-a3ac-0c9b4ad55a74", + "x-ms-routing-request-id": "WESTUS2:20221026T060052Z:2e9c0e08-1c45-4ad0-89ee-7dc814d1e6c5", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a", - "name": "4513a247-f545-4e81-85ef-14fe2777aa2a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2", + "name": "07f8bb1a-c455-44af-a88e-3d4159a8efa2", "status": "InProgress", "startTime": null, "endTime": null, @@ -1867,38 +1854,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-56489141e71d504c9c31d695999043a3-c8b788bf7bf7d24c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "54d037c7d92ab164bc4541c408712133", + "traceparent": "00-054467a4ba5012398170802be4dc8d84-acdbf0446892bdd3-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3b7f5326920cd349a90b8591d462ea63", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "54d037c7d92ab164bc4541c408712133", + "client-request-id": "3b7f5326920cd349a90b8591d462ea63", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:48:03 GMT", + "Date": "Wed, 26 Oct 2022 06:01:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bc2bcceb-5e89-4f67-933c-b347fe5dfb41", - "x-ms-ratelimit-remaining-subscription-reads": "11957", - "x-ms-request-id": "afa4eb96-42c8-4cad-baf7-4c9e7c1ad9ba", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T034804Z:bc2bcceb-5e89-4f67-933c-b347fe5dfb41", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "0526e620-020d-4cf3-96f6-f3f381284891", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "7ed36681-a494-440c-9cdd-18289157ad95", + "x-ms-routing-request-id": "WESTUS2:20221026T060124Z:0526e620-020d-4cf3-96f6-f3f381284891", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a", - "name": "4513a247-f545-4e81-85ef-14fe2777aa2a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2", + "name": "07f8bb1a-c455-44af-a88e-3d4159a8efa2", "status": "InProgress", "startTime": null, "endTime": null, @@ -1908,38 +1895,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-56489141e71d504c9c31d695999043a3-d0a2340a4f34d245-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d27fc96b41da3e26aea7d0167b242bfa", + "traceparent": "00-054467a4ba5012398170802be4dc8d84-66fc493ca4f88ee6-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e2e03fac18d79ec2886d0dcdb5f25f9a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "d27fc96b41da3e26aea7d0167b242bfa", + "client-request-id": "e2e03fac18d79ec2886d0dcdb5f25f9a", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:48:36 GMT", + "Date": "Wed, 26 Oct 2022 06:01:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "81984628-621d-435a-84d6-e7ece2f823c2", - "x-ms-ratelimit-remaining-subscription-reads": "11956", - "x-ms-request-id": "37fc91ae-c5bf-486d-a4f5-1a3e4242b099", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T034836Z:81984628-621d-435a-84d6-e7ece2f823c2", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "4b54768e-2e18-4eb7-91f9-825b4f71708c", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "7c62fa87-40f1-4e5e-bcdb-0bad90396959", + "x-ms-routing-request-id": "WESTUS2:20221026T060156Z:4b54768e-2e18-4eb7-91f9-825b4f71708c", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a", - "name": "4513a247-f545-4e81-85ef-14fe2777aa2a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2", + "name": "07f8bb1a-c455-44af-a88e-3d4159a8efa2", "status": "InProgress", "startTime": null, "endTime": null, @@ -1949,38 +1936,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-56489141e71d504c9c31d695999043a3-f615d21e47f5ba46-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "35f55c4c40a6fb832b8c316402a553cd", + "traceparent": "00-054467a4ba5012398170802be4dc8d84-98b20a60e1ce0684-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "402818215e4aaeb441682d5a613429ab", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "35f55c4c40a6fb832b8c316402a553cd", + "client-request-id": "402818215e4aaeb441682d5a613429ab", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:49:08 GMT", + "Date": "Wed, 26 Oct 2022 06:02:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "95a0c566-08bb-468e-aa1c-2cf0342039e1", - "x-ms-ratelimit-remaining-subscription-reads": "11955", - "x-ms-request-id": "2762f873-cba8-4518-9680-94beb055df4a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T034909Z:95a0c566-08bb-468e-aa1c-2cf0342039e1", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "f871b552-0806-4698-8fb0-f789b7736013", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "8af22852-7c2d-4a2f-a025-f6ab32f1ff96", + "x-ms-routing-request-id": "WESTUS2:20221026T060228Z:f871b552-0806-4698-8fb0-f789b7736013", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a", - "name": "4513a247-f545-4e81-85ef-14fe2777aa2a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2", + "name": "07f8bb1a-c455-44af-a88e-3d4159a8efa2", "status": "InProgress", "startTime": null, "endTime": null, @@ -1990,38 +1977,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-56489141e71d504c9c31d695999043a3-fea583ffd9cbfd48-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "36a3d3166e2386731091a682084e3697", + "traceparent": "00-054467a4ba5012398170802be4dc8d84-5d95b97ca00dd61f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "56e8b7bb13f60dd291e1b39f857b1eb6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "36a3d3166e2386731091a682084e3697", + "client-request-id": "56e8b7bb13f60dd291e1b39f857b1eb6", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:49:41 GMT", + "Date": "Wed, 26 Oct 2022 06:03:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "da7f54c3-9ea4-4e85-9a81-d4e0b93cd945", - "x-ms-ratelimit-remaining-subscription-reads": "11954", - "x-ms-request-id": "7b7225a3-f3fa-4136-9e5e-172e6f71047b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T034941Z:da7f54c3-9ea4-4e85-9a81-d4e0b93cd945", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "7d3ed0af-bffd-44a7-a5c7-fc2d3ebde039", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "7b4d91f0-16be-4859-ae69-f9ea6f28690d", + "x-ms-routing-request-id": "WESTUS2:20221026T060301Z:7d3ed0af-bffd-44a7-a5c7-fc2d3ebde039", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a", - "name": "4513a247-f545-4e81-85ef-14fe2777aa2a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2", + "name": "07f8bb1a-c455-44af-a88e-3d4159a8efa2", "status": "InProgress", "startTime": null, "endTime": null, @@ -2031,38 +2018,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-56489141e71d504c9c31d695999043a3-ab974c8a7465c44f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ab77471aeb7b2a8d4683a64e10c23c08", + "traceparent": "00-054467a4ba5012398170802be4dc8d84-d8b5e0111fecd385-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "bc70ebaba9394e188b32a16feb683d53", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "ab77471aeb7b2a8d4683a64e10c23c08", + "client-request-id": "bc70ebaba9394e188b32a16feb683d53", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:50:13 GMT", + "Date": "Wed, 26 Oct 2022 06:03:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8f9fb188-5ab9-43b8-9cc4-068d35be597f", - "x-ms-ratelimit-remaining-subscription-reads": "11953", - "x-ms-request-id": "43749706-093d-4fc5-b48c-3825841b0428", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T035013Z:8f9fb188-5ab9-43b8-9cc4-068d35be597f", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "a7b4751f-9bd8-4da3-b3e5-78e89792e640", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "9cac7ee8-44d7-42dc-9af2-6b02e6340255", + "x-ms-routing-request-id": "WESTUS2:20221026T060333Z:a7b4751f-9bd8-4da3-b3e5-78e89792e640", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a", - "name": "4513a247-f545-4e81-85ef-14fe2777aa2a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2", + "name": "07f8bb1a-c455-44af-a88e-3d4159a8efa2", "status": "InProgress", "startTime": null, "endTime": null, @@ -2072,38 +2059,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-56489141e71d504c9c31d695999043a3-b70771512f7daa44-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a7ff0253f480ddd6e86f24159a00f2dd", + "traceparent": "00-054467a4ba5012398170802be4dc8d84-37106dc37661c50c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "fd126143090a0ea3451baf69aa1428c5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "a7ff0253f480ddd6e86f24159a00f2dd", + "client-request-id": "fd126143090a0ea3451baf69aa1428c5", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:50:46 GMT", + "Date": "Wed, 26 Oct 2022 06:04:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "af520f6d-b9ba-4439-bebc-5039202b2800", - "x-ms-ratelimit-remaining-subscription-reads": "11952", - "x-ms-request-id": "b059ba9f-0793-40e6-b54c-c12472728c69", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T035046Z:af520f6d-b9ba-4439-bebc-5039202b2800", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "63e626a2-483d-4bcb-a760-248efac8a607", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "6bdfd47b-658a-4dc3-b491-14196373a425", + "x-ms-routing-request-id": "WESTUS2:20221026T060405Z:63e626a2-483d-4bcb-a760-248efac8a607", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a", - "name": "4513a247-f545-4e81-85ef-14fe2777aa2a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2", + "name": "07f8bb1a-c455-44af-a88e-3d4159a8efa2", "status": "InProgress", "startTime": null, "endTime": null, @@ -2113,38 +2100,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-56489141e71d504c9c31d695999043a3-b9012ba33fcb5740-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "bb499955a72d2a524678efa0c724754d", + "traceparent": "00-054467a4ba5012398170802be4dc8d84-5d806488243035ad-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "75af77496dc311719f99cbc471632229", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "bb499955a72d2a524678efa0c724754d", + "client-request-id": "75af77496dc311719f99cbc471632229", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:51:18 GMT", + "Date": "Wed, 26 Oct 2022 06:04:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "24396554-5428-4291-96a4-7776acab81f1", - "x-ms-ratelimit-remaining-subscription-reads": "11951", - "x-ms-request-id": "489fa0ac-48f2-40f0-b630-e4b65df281e5", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T035118Z:24396554-5428-4291-96a4-7776acab81f1", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "96749fdd-29e2-4d28-9b2f-9654ed26e4a4", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "5d9f543d-9c2c-4a78-ad74-7421c4f746f8", + "x-ms-routing-request-id": "WESTUS2:20221026T060437Z:96749fdd-29e2-4d28-9b2f-9654ed26e4a4", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a", - "name": "4513a247-f545-4e81-85ef-14fe2777aa2a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2", + "name": "07f8bb1a-c455-44af-a88e-3d4159a8efa2", "status": "InProgress", "startTime": null, "endTime": null, @@ -2154,38 +2141,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-56489141e71d504c9c31d695999043a3-d69a850e117e9543-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "052f9e558e4e2616719ac20bc6789046", + "traceparent": "00-054467a4ba5012398170802be4dc8d84-5ff741159c0d91c5-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "245b60a32169a2ac4762761ef9aea376", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "052f9e558e4e2616719ac20bc6789046", + "client-request-id": "245b60a32169a2ac4762761ef9aea376", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:51:50 GMT", + "Date": "Wed, 26 Oct 2022 06:05:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cb3af3f1-7316-4265-aee2-b1769655a3f3", - "x-ms-ratelimit-remaining-subscription-reads": "11950", - "x-ms-request-id": "f5445a0b-eef8-40e4-a845-f0cf2cc9f2b7", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T035150Z:cb3af3f1-7316-4265-aee2-b1769655a3f3", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "2c117f9c-5830-4b2b-b1ab-6d642b7ee7c6", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "958637ad-04e9-4b74-b24d-db3003f1f283", + "x-ms-routing-request-id": "WESTUS2:20221026T060509Z:2c117f9c-5830-4b2b-b1ab-6d642b7ee7c6", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a", - "name": "4513a247-f545-4e81-85ef-14fe2777aa2a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2", + "name": "07f8bb1a-c455-44af-a88e-3d4159a8efa2", "status": "InProgress", "startTime": null, "endTime": null, @@ -2195,38 +2182,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-56489141e71d504c9c31d695999043a3-c336b27bf10ac64d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "77f9c9908079abdab0d56107043616c4", + "traceparent": "00-054467a4ba5012398170802be4dc8d84-28697daa97c26f63-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7425db09c7b8d58fef005e703dde9ce2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "77f9c9908079abdab0d56107043616c4", + "client-request-id": "7425db09c7b8d58fef005e703dde9ce2", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:52:23 GMT", + "Date": "Wed, 26 Oct 2022 06:05:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "25cdb9a3-02cd-42b5-b476-d7d07510b541", - "x-ms-ratelimit-remaining-subscription-reads": "11949", - "x-ms-request-id": "5e8bbcfb-4667-41b2-b4ab-c6fbb2329851", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T035223Z:25cdb9a3-02cd-42b5-b476-d7d07510b541", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "339a743c-febc-41ca-9d52-fa92d2dac19e", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "13c0acca-1a7a-490d-864e-9a75c2071f71", + "x-ms-routing-request-id": "WESTUS2:20221026T060541Z:339a743c-febc-41ca-9d52-fa92d2dac19e", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a", - "name": "4513a247-f545-4e81-85ef-14fe2777aa2a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2", + "name": "07f8bb1a-c455-44af-a88e-3d4159a8efa2", "status": "InProgress", "startTime": null, "endTime": null, @@ -2236,38 +2223,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-56489141e71d504c9c31d695999043a3-eacb6d97fbe2194d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "fcbfd6faedd1c68e82234993e54663ce", + "traceparent": "00-054467a4ba5012398170802be4dc8d84-817e22f8b4a8695f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4ac586f804b9285cca0d2e61f75317f0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "fcbfd6faedd1c68e82234993e54663ce", + "client-request-id": "4ac586f804b9285cca0d2e61f75317f0", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:52:55 GMT", + "Date": "Wed, 26 Oct 2022 06:06:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a649b56c-123e-4ea3-bf86-f197dddc69a5", - "x-ms-ratelimit-remaining-subscription-reads": "11948", - "x-ms-request-id": "b1455c4b-3009-4181-bb10-20ae70dbca66", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T035256Z:a649b56c-123e-4ea3-bf86-f197dddc69a5", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "bdb5edbc-e807-4c3d-b206-59e85ca0ea84", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "2f3809f2-d1be-48ed-b08a-e81668df1911", + "x-ms-routing-request-id": "WESTUS2:20221026T060613Z:bdb5edbc-e807-4c3d-b206-59e85ca0ea84", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a", - "name": "4513a247-f545-4e81-85ef-14fe2777aa2a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2", + "name": "07f8bb1a-c455-44af-a88e-3d4159a8efa2", "status": "InProgress", "startTime": null, "endTime": null, @@ -2277,38 +2264,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-56489141e71d504c9c31d695999043a3-9b7ed5d69acdd246-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "fe0fa9e8fe2bd4d4c38355782d0f213b", + "traceparent": "00-054467a4ba5012398170802be4dc8d84-f2e1d0bf91ef1c1b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "96bb55f6ae3edc70d0853469c33b6468", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "fe0fa9e8fe2bd4d4c38355782d0f213b", + "client-request-id": "96bb55f6ae3edc70d0853469c33b6468", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:53:28 GMT", + "Date": "Wed, 26 Oct 2022 06:06:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "686319dd-ee61-4d6e-a727-88d539d7f831", - "x-ms-ratelimit-remaining-subscription-reads": "11947", - "x-ms-request-id": "5b4a79b4-208a-4caf-8174-bd3286d204cd", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T035328Z:686319dd-ee61-4d6e-a727-88d539d7f831", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "770ffa91-7249-444d-91a0-765a9c17bd5c", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "a0685db4-e1ab-4d6c-bc51-a88171fdba0a", + "x-ms-routing-request-id": "WESTUS2:20221026T060645Z:770ffa91-7249-444d-91a0-765a9c17bd5c", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a", - "name": "4513a247-f545-4e81-85ef-14fe2777aa2a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2", + "name": "07f8bb1a-c455-44af-a88e-3d4159a8efa2", "status": "InProgress", "startTime": null, "endTime": null, @@ -2318,38 +2305,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-56489141e71d504c9c31d695999043a3-2fb580a45feafd4d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f011fe8494b8a3743a32f4563747c669", + "traceparent": "00-054467a4ba5012398170802be4dc8d84-556476385196f810-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "732594c558e905bd7ffda9ab992ede9c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "f011fe8494b8a3743a32f4563747c669", + "client-request-id": "732594c558e905bd7ffda9ab992ede9c", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:54:00 GMT", + "Date": "Wed, 26 Oct 2022 06:07:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f92e2ec7-cecc-4d99-be33-f9fe4bb479f3", - "x-ms-ratelimit-remaining-subscription-reads": "11946", - "x-ms-request-id": "0b35bc79-217e-43c7-8c6e-9b1f82954559", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T035400Z:f92e2ec7-cecc-4d99-be33-f9fe4bb479f3", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "b83359db-cbd9-431e-9c08-b2f0c67a9ea9", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "e9cd8845-0386-4b80-9e4d-02909bf7294a", + "x-ms-routing-request-id": "WESTUS2:20221026T060717Z:b83359db-cbd9-431e-9c08-b2f0c67a9ea9", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a", - "name": "4513a247-f545-4e81-85ef-14fe2777aa2a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2", + "name": "07f8bb1a-c455-44af-a88e-3d4159a8efa2", "status": "InProgress", "startTime": null, "endTime": null, @@ -2359,38 +2346,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-56489141e71d504c9c31d695999043a3-e72a5f0a2b4c484d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5b1f93721726fb9802eb384e97169973", + "traceparent": "00-054467a4ba5012398170802be4dc8d84-479830e49f6a080c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e87a6de805234aa316e97a33cff2648f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "5b1f93721726fb9802eb384e97169973", + "client-request-id": "e87a6de805234aa316e97a33cff2648f", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:54:32 GMT", + "Date": "Wed, 26 Oct 2022 06:07:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fc30d783-de5c-41e6-8599-e4da88a071cb", - "x-ms-ratelimit-remaining-subscription-reads": "11945", - "x-ms-request-id": "bba3a9fd-995c-4ecb-bd73-127713a2dd67", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T035433Z:fc30d783-de5c-41e6-8599-e4da88a071cb", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "3a45b84a-c035-4747-90fe-70b2605286f2", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "ccf5ec53-e12a-4b0b-be5c-bbbb89b69145", + "x-ms-routing-request-id": "WESTUS2:20221026T060750Z:3a45b84a-c035-4747-90fe-70b2605286f2", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a", - "name": "4513a247-f545-4e81-85ef-14fe2777aa2a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2", + "name": "07f8bb1a-c455-44af-a88e-3d4159a8efa2", "status": "InProgress", "startTime": null, "endTime": null, @@ -2400,38 +2387,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-56489141e71d504c9c31d695999043a3-cb980178af077a4f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e60f0e0173355415346cc4f9097e9d7c", + "traceparent": "00-054467a4ba5012398170802be4dc8d84-c4a849996fec833e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "629bc5a9a42d9d0798b6174104c442a2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "e60f0e0173355415346cc4f9097e9d7c", + "client-request-id": "629bc5a9a42d9d0798b6174104c442a2", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:55:04 GMT", + "Date": "Wed, 26 Oct 2022 06:08:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "db2443a6-f0c9-4074-b152-13d144baf166", - "x-ms-ratelimit-remaining-subscription-reads": "11944", - "x-ms-request-id": "85807b1c-81b7-4ab5-b9cc-bfdb93c0bc02", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T035505Z:db2443a6-f0c9-4074-b152-13d144baf166", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "cbf58580-4ac0-441f-b7d8-2e0429aa7b55", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "b02aa023-ea07-4a71-b826-87d570ae0738", + "x-ms-routing-request-id": "WESTUS2:20221026T060822Z:cbf58580-4ac0-441f-b7d8-2e0429aa7b55", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a", - "name": "4513a247-f545-4e81-85ef-14fe2777aa2a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2", + "name": "07f8bb1a-c455-44af-a88e-3d4159a8efa2", "status": "InProgress", "startTime": null, "endTime": null, @@ -2441,38 +2428,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-56489141e71d504c9c31d695999043a3-db1fbcd38b775e49-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9a06ebbcc6ef6c156615edcc5b260b24", + "traceparent": "00-054467a4ba5012398170802be4dc8d84-65f2b45c91d3b371-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "558097a67bc1c045f0db5cffde89358c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "9a06ebbcc6ef6c156615edcc5b260b24", + "client-request-id": "558097a67bc1c045f0db5cffde89358c", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:55:37 GMT", + "Date": "Wed, 26 Oct 2022 06:08:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0fa526e5-3e5c-41c6-abb8-40b6d193c5a6", - "x-ms-ratelimit-remaining-subscription-reads": "11943", - "x-ms-request-id": "c08570d6-4960-499b-bf1f-612ec04b91c1", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T035537Z:0fa526e5-3e5c-41c6-abb8-40b6d193c5a6", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "646f43f4-b116-4688-b704-55af3cca5dfe", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "da790a5f-fce1-4b84-88bb-c4d5b462e5aa", + "x-ms-routing-request-id": "WESTUS2:20221026T060854Z:646f43f4-b116-4688-b704-55af3cca5dfe", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a", - "name": "4513a247-f545-4e81-85ef-14fe2777aa2a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2", + "name": "07f8bb1a-c455-44af-a88e-3d4159a8efa2", "status": "InProgress", "startTime": null, "endTime": null, @@ -2482,38 +2469,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-56489141e71d504c9c31d695999043a3-ccc2c1ced6b73b42-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "28548198e037fe347dca26b9539ef283", + "traceparent": "00-054467a4ba5012398170802be4dc8d84-9a2d9c70cbdbc7ee-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d40219987c92436f66dc506dee624551", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "28548198e037fe347dca26b9539ef283", + "client-request-id": "d40219987c92436f66dc506dee624551", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:56:09 GMT", + "Date": "Wed, 26 Oct 2022 06:09:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f2bf553c-6746-4fd6-9b94-4267f3e74011", - "x-ms-ratelimit-remaining-subscription-reads": "11942", - "x-ms-request-id": "7b562c9a-2f7d-42c9-bfc1-78cca08bc8e2", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T035610Z:f2bf553c-6746-4fd6-9b94-4267f3e74011", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "0d604849-8763-4d0b-b295-8800cb73ed6e", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "9382f232-3483-4242-b193-78693662260a", + "x-ms-routing-request-id": "WESTUS2:20221026T060926Z:0d604849-8763-4d0b-b295-8800cb73ed6e", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a", - "name": "4513a247-f545-4e81-85ef-14fe2777aa2a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2", + "name": "07f8bb1a-c455-44af-a88e-3d4159a8efa2", "status": "InProgress", "startTime": null, "endTime": null, @@ -2523,38 +2510,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-56489141e71d504c9c31d695999043a3-1d0a4718800a1740-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ab91bc4eff0f3b83f9a27f1f8548f90d", + "traceparent": "00-054467a4ba5012398170802be4dc8d84-bc3be1247b9279f6-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "378cd8a60f712dcd7fdb71514707bf0e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "ab91bc4eff0f3b83f9a27f1f8548f90d", + "client-request-id": "378cd8a60f712dcd7fdb71514707bf0e", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:56:42 GMT", + "Date": "Wed, 26 Oct 2022 06:09:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b26bb253-a209-4f8c-9b7d-cac7855bcc71", - "x-ms-ratelimit-remaining-subscription-reads": "11941", - "x-ms-request-id": "9031f76b-82d1-4ae7-b207-4a6b07ad8689", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T035642Z:b26bb253-a209-4f8c-9b7d-cac7855bcc71", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "ee1055a0-5f95-4062-aa2b-7749f083cfe8", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "023bff95-ba41-441d-b002-15c5f6ab2c76", + "x-ms-routing-request-id": "WESTUS2:20221026T060958Z:ee1055a0-5f95-4062-aa2b-7749f083cfe8", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a", - "name": "4513a247-f545-4e81-85ef-14fe2777aa2a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2", + "name": "07f8bb1a-c455-44af-a88e-3d4159a8efa2", "status": "InProgress", "startTime": null, "endTime": null, @@ -2564,38 +2551,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-56489141e71d504c9c31d695999043a3-5ca883abb99b5147-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "8760a0607429db44b7081c259f5b19c7", + "traceparent": "00-054467a4ba5012398170802be4dc8d84-69a7593da9b3e7cc-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "eba88a806ec22a10283defe52bd7d18e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "8760a0607429db44b7081c259f5b19c7", + "client-request-id": "eba88a806ec22a10283defe52bd7d18e", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:57:14 GMT", + "Date": "Wed, 26 Oct 2022 06:10:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "234d07c4-698d-4d9c-a492-15cbfdcfb0a9", - "x-ms-ratelimit-remaining-subscription-reads": "11940", - "x-ms-request-id": "92c0d13b-ced1-491c-b055-2d66bfa3efde", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T035714Z:234d07c4-698d-4d9c-a492-15cbfdcfb0a9", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "f8e354ad-b7b0-4f8d-b1e8-e8d34e69fac4", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "7c65e6e7-ad7b-4125-b772-0fa745a20b28", + "x-ms-routing-request-id": "WESTUS2:20221026T061030Z:f8e354ad-b7b0-4f8d-b1e8-e8d34e69fac4", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a", - "name": "4513a247-f545-4e81-85ef-14fe2777aa2a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2", + "name": "07f8bb1a-c455-44af-a88e-3d4159a8efa2", "status": "InProgress", "startTime": null, "endTime": null, @@ -2605,38 +2592,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-56489141e71d504c9c31d695999043a3-b63e85e731c2804c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9e7e69235f959914fe192f9560147834", + "traceparent": "00-054467a4ba5012398170802be4dc8d84-a781f42f5a2862c8-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "06590b95fdfc891a4cd554b60a1dfb5f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "9e7e69235f959914fe192f9560147834", + "client-request-id": "06590b95fdfc891a4cd554b60a1dfb5f", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:57:47 GMT", + "Date": "Wed, 26 Oct 2022 06:11:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f5e18350-a309-43c9-ab4f-95b5c6be19ae", - "x-ms-ratelimit-remaining-subscription-reads": "11939", - "x-ms-request-id": "43c261e8-05f0-482d-a2b4-792d8312f027", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T035747Z:f5e18350-a309-43c9-ab4f-95b5c6be19ae", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "2d39f6f5-a0cf-45ba-a0a6-4fd992b8bb0a", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "6bb7f507-300e-4920-a7e6-3d26d064796a", + "x-ms-routing-request-id": "WESTUS2:20221026T061102Z:2d39f6f5-a0cf-45ba-a0a6-4fd992b8bb0a", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a", - "name": "4513a247-f545-4e81-85ef-14fe2777aa2a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2", + "name": "07f8bb1a-c455-44af-a88e-3d4159a8efa2", "status": "InProgress", "startTime": null, "endTime": null, @@ -2646,38 +2633,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-56489141e71d504c9c31d695999043a3-663ce841836d1d49-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b25918d16a3ed95978b5f406e25e9b9d", + "traceparent": "00-054467a4ba5012398170802be4dc8d84-f010d4779d6dba89-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "63ec411c5ab9378fc7620f3420e801a8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "b25918d16a3ed95978b5f406e25e9b9d", + "client-request-id": "63ec411c5ab9378fc7620f3420e801a8", "Content-Length": "361", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 03:58:19 GMT", + "Date": "Wed, 26 Oct 2022 06:11:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0a0c7959-5297-4922-a217-2e39149dfb7b", - "x-ms-ratelimit-remaining-subscription-reads": "11938", - "x-ms-request-id": "119cc8c6-68d0-4846-875a-e6b78c071ae2", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T035820Z:0a0c7959-5297-4922-a217-2e39149dfb7b", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "691e517c-bd4e-4de3-a745-4c548323c26d", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "3cabaf33-b559-4ad9-a787-40e8667e913c", + "x-ms-routing-request-id": "WESTUS2:20221026T061134Z:691e517c-bd4e-4de3-a745-4c548323c26d", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/4513a247-f545-4e81-85ef-14fe2777aa2a", - "name": "4513a247-f545-4e81-85ef-14fe2777aa2a", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/07f8bb1a-c455-44af-a88e-3d4159a8efa2", + "name": "07f8bb1a-c455-44af-a88e-3d4159a8efa2", "status": "Succeeded", "startTime": null, "endTime": null, @@ -2687,43 +2674,43 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/redis/RedisGeo28516?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4023/providers/Microsoft.Cache/redis/RedisGeo21526?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-56489141e71d504c9c31d695999043a3-625771f015fb6147-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1cfbb8895aca00788bc7891044af7ba3", + "traceparent": "00-054467a4ba5012398170802be4dc8d84-a74d33b6fa5a22e3-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3cbbe309b9ad8311701f9fec1a591f0a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "1cfbb8895aca00788bc7891044af7ba3", - "Content-Length": "773", + "client-request-id": "3cbbe309b9ad8311701f9fec1a591f0a", + "Content-Length": "770", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 03:58:20 GMT", + "Date": "Wed, 26 Oct 2022 06:11:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1322cb3e-c3b8-4168-9b55-6c9dac4ab5b7", - "x-ms-ratelimit-remaining-subscription-reads": "11937", - "x-ms-request-id": "b254f7df-d00d-49f9-a536-e7fb51508b8c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T035821Z:1322cb3e-c3b8-4168-9b55-6c9dac4ab5b7", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "fc7f37d2-5a12-43e1-aa7f-17b5f06670de", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "940a4d5b-d279-443d-93c8-0e8d5a59bf0d", + "x-ms-routing-request-id": "WESTUS2:20221026T061135Z:fc7f37d2-5a12-43e1-aa7f-17b5f06670de", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo28516", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4023/providers/Microsoft.Cache/Redis/RedisGeo21526", "location": "South Central US", - "name": "RedisGeo28516", + "name": "RedisGeo21526", "type": "Microsoft.Cache/Redis", "tags": {}, "properties": { "provisioningState": "Succeeded", - "redisVersion": "4.0.14", + "redisVersion": "6.0", "sku": { "name": "Premium", "family": "P", @@ -2750,7 +2737,7 @@ "maxmemory-delta": "642" }, "accessKeys": null, - "hostName": "RedisGeo28516.redis.cache.windows.net", + "hostName": "RedisGeo21526.redis.cache.windows.net", "port": 6379, "sslPort": 6380, "linkedServers": [] @@ -2758,916 +2745,966 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/redis/RedisGeo15985/linkedServers/RedisGeo28516?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4023/providers/Microsoft.Cache/redis/RedisGeo15727/linkedServers/RedisGeo21526?api-version=2022-06-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "233", "Content-Type": "application/json", - "traceparent": "00-d03f51990550b740b4018f25d5a7bed1-c4da0ed0fedb714d-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "8753e88f6602b9890fa525df6b0eb6a0", + "traceparent": "00-66ca5142c0645ba8e765c4b08a407620-abdf85ba97e70ee0-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e9c88f416eeb3bd47b223e9aede66963", "x-ms-return-client-request-id": "true" }, "RequestBody": { "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo28516", + "linkedRedisCacheId": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4023/providers/Microsoft.Cache/Redis/RedisGeo21526", "linkedRedisCacheLocation": "southcentralus", "serverRole": "Secondary" } }, "StatusCode": 201, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "8753e88f6602b9890fa525df6b0eb6a0", - "Content-Length": "548", + "client-request-id": "e9c88f416eeb3bd47b223e9aede66963", + "Content-Length": "695", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 03:58:23 GMT", + "Date": "Wed, 26 Oct 2022 06:11:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a5295b05-9769-431e-9d4c-4ee1906aa563", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "9b46b068-cb20-4c5f-b608-493c64a8c220", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T035824Z:a5295b05-9769-431e-9d4c-4ee1906aa563", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "486d5534-38b9-45cf-8d92-3e2f50cbaec9", + "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-request-id": "f574ee71-d976-4c27-ad8b-355dd0424241", + "x-ms-routing-request-id": "WESTUS2:20221026T061136Z:486d5534-38b9-45cf-8d92-3e2f50cbaec9", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo15985/linkedServers/RedisGeo28516", - "name": "RedisGeo28516", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4023/providers/Microsoft.Cache/Redis/RedisGeo15727/linkedServers/RedisGeo21526", + "name": "RedisGeo21526", "type": "Microsoft.Cache/Redis/linkedServers", "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo28516", + "linkedRedisCacheId": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4023/providers/Microsoft.Cache/Redis/RedisGeo21526", "linkedRedisCacheLocation": "South Central US", "serverRole": "Secondary", + "geoReplicatedPrimaryHostName": "RedisGeo21526.geo.redis.cache.windows.net", + "primaryHostName": "RedisGeo15727.redis.cache.windows.net", "provisioningState": "Creating" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/redis/RedisGeo15985/linkedServers/RedisGeo28516?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d03f51990550b740b4018f25d5a7bed1-d1c05ac7b02ec44a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f977503a130a229b2f420c253499947d", + "traceparent": "00-66ca5142c0645ba8e765c4b08a407620-d1c1a47136ac544a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "90f3054318209bbc0e80c18b7a77958a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "f977503a130a229b2f420c253499947d", - "Content-Length": "494", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 03:58:24 GMT", + "client-request-id": "90f3054318209bbc0e80c18b7a77958a", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:11:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "78bc6c6d-9e6d-4bee-86e9-a4f0ca7a8415", - "x-ms-ratelimit-remaining-subscription-reads": "11936", - "x-ms-request-id": "d1554b2f-dcc2-42fe-ba16-07e7ca3f4397", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T035824Z:78bc6c6d-9e6d-4bee-86e9-a4f0ca7a8415", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "7eb764c4-49af-4998-90cb-b98f1a37012d", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "9d54ee8c-f9e1-4e51-ba51-1ec5e4ff826c", + "x-ms-routing-request-id": "WESTUS2:20221026T061136Z:7eb764c4-49af-4998-90cb-b98f1a37012d", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo15985/linkedServers/RedisGeo28516", - "name": "RedisGeo28516", - "type": "Microsoft.Cache/Redis/linkedServers", - "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo28516", - "linkedRedisCacheLocation": "South Central US", - "serverRole": "Secondary", - "provisioningState": "Creating" - } + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241", + "name": "f574ee71-d976-4c27-ad8b-355dd0424241", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/redis/RedisGeo15985/linkedServers/RedisGeo28516?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d03f51990550b740b4018f25d5a7bed1-355789adcfbffc4d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b293e910d3a2328a7edbe7a93f12d8c6", + "traceparent": "00-66ca5142c0645ba8e765c4b08a407620-35521ee557e4706d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6e193bb6f8ac82a8dd64ba827b3a7fd8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "b293e910d3a2328a7edbe7a93f12d8c6", - "Content-Length": "494", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 03:58:26 GMT", + "client-request-id": "6e193bb6f8ac82a8dd64ba827b3a7fd8", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:11:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a9602439-d98a-4000-9c52-05c834adf40b", - "x-ms-ratelimit-remaining-subscription-reads": "11935", - "x-ms-request-id": "6dcc056a-bff9-4765-bd18-93134646c031", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T035826Z:a9602439-d98a-4000-9c52-05c834adf40b", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "697a40e7-2f4c-4630-81de-71e209305477", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "50d5734b-f955-4d84-ba05-40142144b2c9", + "x-ms-routing-request-id": "WESTUS2:20221026T061137Z:697a40e7-2f4c-4630-81de-71e209305477", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo15985/linkedServers/RedisGeo28516", - "name": "RedisGeo28516", - "type": "Microsoft.Cache/Redis/linkedServers", - "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo28516", - "linkedRedisCacheLocation": "South Central US", - "serverRole": "Secondary", - "provisioningState": "Creating" - } + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241", + "name": "f574ee71-d976-4c27-ad8b-355dd0424241", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/redis/RedisGeo15985/linkedServers/RedisGeo28516?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d03f51990550b740b4018f25d5a7bed1-e6c970d7ffff254b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1aa55c10bc966995f6e978d650454206", + "traceparent": "00-66ca5142c0645ba8e765c4b08a407620-84d311b96b6003fa-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e856d005d8f3bb43ef1118e1fd27e9b7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "1aa55c10bc966995f6e978d650454206", - "Content-Length": "494", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 03:58:28 GMT", + "client-request-id": "e856d005d8f3bb43ef1118e1fd27e9b7", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:11:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6a3ad682-67b7-4ea7-9f24-d199e30a4df4", - "x-ms-ratelimit-remaining-subscription-reads": "11934", - "x-ms-request-id": "db33e251-6f92-4158-8e89-1213a312e979", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T035828Z:6a3ad682-67b7-4ea7-9f24-d199e30a4df4", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "5b6e4c2f-627c-4b90-a5b2-1441d0bc03a4", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "e6d49439-a33e-4ebe-b320-4c7eb3f63b8e", + "x-ms-routing-request-id": "WESTUS2:20221026T061138Z:5b6e4c2f-627c-4b90-a5b2-1441d0bc03a4", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo15985/linkedServers/RedisGeo28516", - "name": "RedisGeo28516", - "type": "Microsoft.Cache/Redis/linkedServers", - "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo28516", - "linkedRedisCacheLocation": "South Central US", - "serverRole": "Secondary", - "provisioningState": "Creating" - } + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241", + "name": "f574ee71-d976-4c27-ad8b-355dd0424241", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/redis/RedisGeo15985/linkedServers/RedisGeo28516?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d03f51990550b740b4018f25d5a7bed1-3ad4893ebb1d2641-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f765aac3e1b66626c6447b2f2cf2e31c", + "traceparent": "00-66ca5142c0645ba8e765c4b08a407620-5fd2df9d8b55274a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7fe368d2ae894bc15c70b3bb5d3920d4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "f765aac3e1b66626c6447b2f2cf2e31c", - "Content-Length": "494", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 03:58:29 GMT", + "client-request-id": "7fe368d2ae894bc15c70b3bb5d3920d4", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:11:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9388114f-7f04-4a12-aab0-923355d0e849", - "x-ms-ratelimit-remaining-subscription-reads": "11933", - "x-ms-request-id": "b4ec6707-9715-4e25-8f16-df95920e8a58", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T035830Z:9388114f-7f04-4a12-aab0-923355d0e849", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "2f2317ad-d111-4db1-9da4-94bc066b8715", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "dc7a229e-b3c2-4c11-97de-0de022acf638", + "x-ms-routing-request-id": "WESTUS2:20221026T061139Z:2f2317ad-d111-4db1-9da4-94bc066b8715", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo15985/linkedServers/RedisGeo28516", - "name": "RedisGeo28516", - "type": "Microsoft.Cache/Redis/linkedServers", - "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo28516", - "linkedRedisCacheLocation": "South Central US", - "serverRole": "Secondary", - "provisioningState": "Creating" - } + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241", + "name": "f574ee71-d976-4c27-ad8b-355dd0424241", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/redis/RedisGeo15985/linkedServers/RedisGeo28516?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d03f51990550b740b4018f25d5a7bed1-ddddad118500dd46-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d814456979f454e65329bcb95ab4e239", + "traceparent": "00-66ca5142c0645ba8e765c4b08a407620-e7eada73c9daec0b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "aa85e900ad20dd97f85e7e9bdfc785b6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "d814456979f454e65329bcb95ab4e239", - "Content-Length": "494", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 03:58:32 GMT", + "client-request-id": "aa85e900ad20dd97f85e7e9bdfc785b6", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:11:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7247d40d-2278-4d54-9283-3d021e9f5768", - "x-ms-ratelimit-remaining-subscription-reads": "11932", - "x-ms-request-id": "375beb4b-5559-4a5f-99e3-9a7589ed92a7", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T035833Z:7247d40d-2278-4d54-9283-3d021e9f5768", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "33fa1592-982c-47d9-a267-5d74858d3615", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "11084038-8b81-4378-a37e-d4bb06604ed7", + "x-ms-routing-request-id": "WESTUS2:20221026T061141Z:33fa1592-982c-47d9-a267-5d74858d3615", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo15985/linkedServers/RedisGeo28516", - "name": "RedisGeo28516", - "type": "Microsoft.Cache/Redis/linkedServers", - "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo28516", - "linkedRedisCacheLocation": "South Central US", - "serverRole": "Secondary", - "provisioningState": "Creating" - } + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241", + "name": "f574ee71-d976-4c27-ad8b-355dd0424241", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/redis/RedisGeo15985/linkedServers/RedisGeo28516?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d03f51990550b740b4018f25d5a7bed1-9f3dc160c89f134f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "94e6e199e0ac2e10353e545241663d03", + "traceparent": "00-66ca5142c0645ba8e765c4b08a407620-1f65c1f96b3089e9-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "12b0027b0057564e0e0b8b8225875db6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "94e6e199e0ac2e10353e545241663d03", - "Content-Length": "494", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 03:58:37 GMT", + "client-request-id": "12b0027b0057564e0e0b8b8225875db6", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:11:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d0499735-4bd7-4d56-b13d-455c9034d646", - "x-ms-ratelimit-remaining-subscription-reads": "11931", - "x-ms-request-id": "2fb5d34a-c101-4eba-a5e6-21cd901403e3", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T035838Z:d0499735-4bd7-4d56-b13d-455c9034d646", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "54c80d86-669f-4342-ae87-4c829e75d535", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "78d9a9f1-3de8-4e86-b00c-f89237b488c3", + "x-ms-routing-request-id": "WESTUS2:20221026T061145Z:54c80d86-669f-4342-ae87-4c829e75d535", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo15985/linkedServers/RedisGeo28516", - "name": "RedisGeo28516", - "type": "Microsoft.Cache/Redis/linkedServers", - "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo28516", - "linkedRedisCacheLocation": "South Central US", - "serverRole": "Secondary", - "provisioningState": "Creating" - } + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241", + "name": "f574ee71-d976-4c27-ad8b-355dd0424241", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/redis/RedisGeo15985/linkedServers/RedisGeo28516?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d03f51990550b740b4018f25d5a7bed1-fba95d05afd56f42-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0a6c5b066a304912c311a38c256d0c11", + "traceparent": "00-66ca5142c0645ba8e765c4b08a407620-7f3ec25390e84f98-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "14e044f13ea12597d105872a30256b95", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "0a6c5b066a304912c311a38c256d0c11", - "Content-Length": "494", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 03:58:46 GMT", + "client-request-id": "14e044f13ea12597d105872a30256b95", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:11:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "01dcd33d-2bc8-4069-b845-5562b6774788", - "x-ms-ratelimit-remaining-subscription-reads": "11930", - "x-ms-request-id": "c60e92d8-ce97-4c77-8c04-62d550fce813", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T035847Z:01dcd33d-2bc8-4069-b845-5562b6774788", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "c3f78e0a-fbb8-4c07-9ad9-a3e937463916", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "c55fffea-95b9-4851-bf49-b7d46fa873ba", + "x-ms-routing-request-id": "WESTUS2:20221026T061153Z:c3f78e0a-fbb8-4c07-9ad9-a3e937463916", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo15985/linkedServers/RedisGeo28516", - "name": "RedisGeo28516", - "type": "Microsoft.Cache/Redis/linkedServers", - "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo28516", - "linkedRedisCacheLocation": "South Central US", - "serverRole": "Secondary", - "provisioningState": "Creating" - } + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241", + "name": "f574ee71-d976-4c27-ad8b-355dd0424241", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/redis/RedisGeo15985/linkedServers/RedisGeo28516?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d03f51990550b740b4018f25d5a7bed1-19c24f72e9c3e44c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4a9542624e0c897035e6a2b5259412ed", + "traceparent": "00-66ca5142c0645ba8e765c4b08a407620-61ecea8afef818c9-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5b40fceb0d89007c9a2f9b152114b771", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "4a9542624e0c897035e6a2b5259412ed", - "Content-Length": "494", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 03:59:03 GMT", + "client-request-id": "5b40fceb0d89007c9a2f9b152114b771", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:12:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1dd41453-de84-4b76-9976-4ad036ce022c", - "x-ms-ratelimit-remaining-subscription-reads": "11929", - "x-ms-request-id": "0a16f21b-e868-4edb-af17-aefb163db41e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T035903Z:1dd41453-de84-4b76-9976-4ad036ce022c", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "6e8fed51-b33b-411a-a0d5-c84dc6432989", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "eeebffcf-1835-40d1-b45c-fbb8a63600c6", + "x-ms-routing-request-id": "WESTUS2:20221026T061209Z:6e8fed51-b33b-411a-a0d5-c84dc6432989", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo15985/linkedServers/RedisGeo28516", - "name": "RedisGeo28516", - "type": "Microsoft.Cache/Redis/linkedServers", - "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo28516", - "linkedRedisCacheLocation": "South Central US", - "serverRole": "Secondary", - "provisioningState": "Creating" - } + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241", + "name": "f574ee71-d976-4c27-ad8b-355dd0424241", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/redis/RedisGeo15985/linkedServers/RedisGeo28516?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d03f51990550b740b4018f25d5a7bed1-84152e521a14aa41-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "feb2b8ebd8482e09cf9cd09a3d8309c8", + "traceparent": "00-66ca5142c0645ba8e765c4b08a407620-93bb03e29b7751f3-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "9aaac70171e63c156b8a4051782425e8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "feb2b8ebd8482e09cf9cd09a3d8309c8", - "Content-Length": "494", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 03:59:36 GMT", + "client-request-id": "9aaac70171e63c156b8a4051782425e8", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:12:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8e81dca8-eef8-4555-83d4-56f62798ddc1", - "x-ms-ratelimit-remaining-subscription-reads": "11928", - "x-ms-request-id": "73d4690a-1e29-416a-911d-917c4e1353cc", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T035936Z:8e81dca8-eef8-4555-83d4-56f62798ddc1", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "4297a634-b403-4af7-a513-c17da5eed46f", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "c04ac7c5-9fbf-4697-9dbe-70f8e6fc44f7", + "x-ms-routing-request-id": "WESTUS2:20221026T061242Z:4297a634-b403-4af7-a513-c17da5eed46f", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo15985/linkedServers/RedisGeo28516", - "name": "RedisGeo28516", - "type": "Microsoft.Cache/Redis/linkedServers", - "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo28516", - "linkedRedisCacheLocation": "South Central US", - "serverRole": "Secondary", - "provisioningState": "Creating" - } + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241", + "name": "f574ee71-d976-4c27-ad8b-355dd0424241", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/redis/RedisGeo15985/linkedServers/RedisGeo28516?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d03f51990550b740b4018f25d5a7bed1-48513f7297718349-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "fff04332f3d0b7f7ebe3d549c75c242f", + "traceparent": "00-66ca5142c0645ba8e765c4b08a407620-2edd43a86ed4be3d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2997f69f0147e32dc7df7971a28104bd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "fff04332f3d0b7f7ebe3d549c75c242f", - "Content-Length": "494", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:00:08 GMT", + "client-request-id": "2997f69f0147e32dc7df7971a28104bd", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:13:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "83e48cec-9ea1-4367-9977-7c8160e3733a", - "x-ms-ratelimit-remaining-subscription-reads": "11927", - "x-ms-request-id": "dc3d3adf-f41e-4065-b556-70f55d622097", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T040009Z:83e48cec-9ea1-4367-9977-7c8160e3733a", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "a069d7f7-d1b2-4043-a812-9e56f650e173", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "7885665d-ef85-4f74-9d1f-136fc37d442e", + "x-ms-routing-request-id": "WESTUS2:20221026T061314Z:a069d7f7-d1b2-4043-a812-9e56f650e173", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo15985/linkedServers/RedisGeo28516", - "name": "RedisGeo28516", - "type": "Microsoft.Cache/Redis/linkedServers", - "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo28516", - "linkedRedisCacheLocation": "South Central US", - "serverRole": "Secondary", - "provisioningState": "Creating" - } + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241", + "name": "f574ee71-d976-4c27-ad8b-355dd0424241", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/redis/RedisGeo15985/linkedServers/RedisGeo28516?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d03f51990550b740b4018f25d5a7bed1-7ff4ae163c43a24a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6ca1b6ff0dbb89c939667b6f7ed54cb1", + "traceparent": "00-66ca5142c0645ba8e765c4b08a407620-61fc4cacadee5f5f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6829164ed07b79aee703f0fecd2b8876", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "6ca1b6ff0dbb89c939667b6f7ed54cb1", - "Content-Length": "494", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:00:42 GMT", + "client-request-id": "6829164ed07b79aee703f0fecd2b8876", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:13:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8d94b5fb-07b4-4c1d-a42c-1bba01a4ea67", - "x-ms-ratelimit-remaining-subscription-reads": "11926", - "x-ms-request-id": "d66066e7-ec0a-4c3c-88d8-b73f9d486434", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T040042Z:8d94b5fb-07b4-4c1d-a42c-1bba01a4ea67", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "fe4498a5-87f4-4dec-b860-d1e52f476ad6", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "27d7ff9f-33f4-4c36-a95c-39316ecfa059", + "x-ms-routing-request-id": "WESTUS2:20221026T061346Z:fe4498a5-87f4-4dec-b860-d1e52f476ad6", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo15985/linkedServers/RedisGeo28516", - "name": "RedisGeo28516", - "type": "Microsoft.Cache/Redis/linkedServers", - "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo28516", - "linkedRedisCacheLocation": "South Central US", - "serverRole": "Secondary", - "provisioningState": "Creating" - } + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241", + "name": "f574ee71-d976-4c27-ad8b-355dd0424241", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/redis/RedisGeo15985/linkedServers/RedisGeo28516?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d03f51990550b740b4018f25d5a7bed1-41315bc91bc8994c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e283dadd13a4f81dc1fa126503bf6773", + "traceparent": "00-66ca5142c0645ba8e765c4b08a407620-8515105c5c2d4360-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2a75b2098e7cff299ac6d307f7a39ae9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "e283dadd13a4f81dc1fa126503bf6773", - "Content-Length": "494", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:01:15 GMT", + "client-request-id": "2a75b2098e7cff299ac6d307f7a39ae9", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:14:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5cd0069d-9fdb-4b27-80c2-8f58682982dd", - "x-ms-ratelimit-remaining-subscription-reads": "11925", - "x-ms-request-id": "16b4a52b-d669-4ed6-b508-aa6ae1e649d7", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T040115Z:5cd0069d-9fdb-4b27-80c2-8f58682982dd", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "5db9e420-8ac6-4331-beed-5b5616350573", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "16840f32-0ba0-42ac-aa48-1ede9d9cba04", + "x-ms-routing-request-id": "WESTUS2:20221026T061418Z:5db9e420-8ac6-4331-beed-5b5616350573", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo15985/linkedServers/RedisGeo28516", - "name": "RedisGeo28516", - "type": "Microsoft.Cache/Redis/linkedServers", - "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo28516", - "linkedRedisCacheLocation": "South Central US", - "serverRole": "Secondary", - "provisioningState": "Creating" - } + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241", + "name": "f574ee71-d976-4c27-ad8b-355dd0424241", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/redis/RedisGeo15985/linkedServers/RedisGeo28516?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d03f51990550b740b4018f25d5a7bed1-7997f256af71324d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "869ba1779de2240c7966c56978883916", + "traceparent": "00-66ca5142c0645ba8e765c4b08a407620-6abd300857528918-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "62038286bdfacf6d471d4143112e169b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "869ba1779de2240c7966c56978883916", - "Content-Length": "494", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:01:47 GMT", + "client-request-id": "62038286bdfacf6d471d4143112e169b", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:14:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dc90010d-64cf-4ff1-b339-c774f0601fe4", - "x-ms-ratelimit-remaining-subscription-reads": "11924", - "x-ms-request-id": "36b23a83-cd2d-455e-a038-2d0a6a199c7e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T040148Z:dc90010d-64cf-4ff1-b339-c774f0601fe4", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "6ad5414c-b47a-4735-a909-005039eb28b7", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "9e7f870f-f3aa-4f00-b984-c69f730ba05f", + "x-ms-routing-request-id": "WESTUS2:20221026T061450Z:6ad5414c-b47a-4735-a909-005039eb28b7", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo15985/linkedServers/RedisGeo28516", - "name": "RedisGeo28516", - "type": "Microsoft.Cache/Redis/linkedServers", - "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo28516", - "linkedRedisCacheLocation": "South Central US", - "serverRole": "Secondary", - "provisioningState": "Creating" - } + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241", + "name": "f574ee71-d976-4c27-ad8b-355dd0424241", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/redis/RedisGeo15985/linkedServers/RedisGeo28516?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d03f51990550b740b4018f25d5a7bed1-d31bc90f08aea04d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ed6c239742d8eb8b98a8aac0fa648679", + "traceparent": "00-66ca5142c0645ba8e765c4b08a407620-64697d9850fdc3c5-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ef680357d90cbf40ec29cdb4fda78244", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "ed6c239742d8eb8b98a8aac0fa648679", - "Content-Length": "493", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:02:21 GMT", + "client-request-id": "ef680357d90cbf40ec29cdb4fda78244", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:15:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "70ba7392-b102-46cc-97fb-bdacebf6ce6e", - "x-ms-ratelimit-remaining-subscription-reads": "11923", - "x-ms-request-id": "d67d481b-3af8-41f4-a8aa-c61acb010e12", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T040221Z:70ba7392-b102-46cc-97fb-bdacebf6ce6e", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "f6bee3ef-468a-4501-982f-6cdfaa520d17", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "e9c7fc01-5ce9-444b-824f-2f1354b3d4bc", + "x-ms-routing-request-id": "WESTUS2:20221026T061522Z:f6bee3ef-468a-4501-982f-6cdfaa520d17", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo15985/linkedServers/RedisGeo28516", - "name": "RedisGeo28516", - "type": "Microsoft.Cache/Redis/linkedServers", - "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo28516", - "linkedRedisCacheLocation": "South Central US", - "serverRole": "Secondary", - "provisioningState": "Syncing" - } + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241", + "name": "f574ee71-d976-4c27-ad8b-355dd0424241", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/redis/RedisGeo15985/linkedServers/RedisGeo28516?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d03f51990550b740b4018f25d5a7bed1-adc0bb923d64094f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ddf807ffc53940cfcd5f683e4db38039", + "traceparent": "00-66ca5142c0645ba8e765c4b08a407620-c7c2188da36e3f1e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4a78066925284c7b45a6e35f4de6ee6c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "ddf807ffc53940cfcd5f683e4db38039", - "Content-Length": "493", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:02:54 GMT", + "client-request-id": "4a78066925284c7b45a6e35f4de6ee6c", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:15:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c5e129e8-7d1f-4771-a059-ec5611cf8528", - "x-ms-ratelimit-remaining-subscription-reads": "11922", - "x-ms-request-id": "ce818290-c462-42b9-9db2-141bcc6325da", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T040254Z:c5e129e8-7d1f-4771-a059-ec5611cf8528", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "967e788d-5a08-450c-b07b-743c90b91832", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "fced873f-f0d4-4024-86ab-2a9079d771c0", + "x-ms-routing-request-id": "WESTUS2:20221026T061554Z:967e788d-5a08-450c-b07b-743c90b91832", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo15985/linkedServers/RedisGeo28516", - "name": "RedisGeo28516", - "type": "Microsoft.Cache/Redis/linkedServers", - "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo28516", - "linkedRedisCacheLocation": "South Central US", - "serverRole": "Secondary", - "provisioningState": "Syncing" - } + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241", + "name": "f574ee71-d976-4c27-ad8b-355dd0424241", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/redis/RedisGeo15985/linkedServers/RedisGeo28516?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d03f51990550b740b4018f25d5a7bed1-cd49b0cbf0369442-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "dfcefcc17953359b16b0ed39f24c2a15", + "traceparent": "00-66ca5142c0645ba8e765c4b08a407620-cf456a99515de1fe-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f3af37b0aa3aacdc424376d1efb8d1a0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "dfcefcc17953359b16b0ed39f24c2a15", - "Content-Length": "493", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:03:27 GMT", + "client-request-id": "f3af37b0aa3aacdc424376d1efb8d1a0", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:16:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "18a50de0-88f8-46fb-815f-3397e1b3e076", - "x-ms-ratelimit-remaining-subscription-reads": "11921", - "x-ms-request-id": "304ca232-2e6d-41d0-855f-f050fdb8ef85", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T040327Z:18a50de0-88f8-46fb-815f-3397e1b3e076", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "ab7ae005-d18e-469c-aa8b-aa9f0ea0ab31", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "c720c394-48b1-4f49-b465-da68daebf62f", + "x-ms-routing-request-id": "WESTUS2:20221026T061626Z:ab7ae005-d18e-469c-aa8b-aa9f0ea0ab31", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo15985/linkedServers/RedisGeo28516", - "name": "RedisGeo28516", - "type": "Microsoft.Cache/Redis/linkedServers", - "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo28516", - "linkedRedisCacheLocation": "South Central US", - "serverRole": "Secondary", - "provisioningState": "Syncing" - } + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241", + "name": "f574ee71-d976-4c27-ad8b-355dd0424241", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/redis/RedisGeo15985/linkedServers/RedisGeo28516?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d03f51990550b740b4018f25d5a7bed1-5eb19ba182ad2b4d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "70694cdf5c8fd1dc542c1f79da4c9de5", + "traceparent": "00-66ca5142c0645ba8e765c4b08a407620-b8993d7bbad554ef-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0adafc9bccb53173881caa66f6e17105", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "70694cdf5c8fd1dc542c1f79da4c9de5", - "Content-Length": "493", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:04:00 GMT", + "client-request-id": "0adafc9bccb53173881caa66f6e17105", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:16:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "93bbb712-efe0-4548-b9fc-0b4a05984289", - "x-ms-ratelimit-remaining-subscription-reads": "11920", - "x-ms-request-id": "914565fe-fb38-49ac-bae6-68e084b0818d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T040400Z:93bbb712-efe0-4548-b9fc-0b4a05984289", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "b15fd8f2-e0cf-43a6-93a8-5095d55e6c64", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "e973774d-d7d7-4217-97fd-062403043186", + "x-ms-routing-request-id": "WESTUS2:20221026T061658Z:b15fd8f2-e0cf-43a6-93a8-5095d55e6c64", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo15985/linkedServers/RedisGeo28516", - "name": "RedisGeo28516", - "type": "Microsoft.Cache/Redis/linkedServers", - "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo28516", - "linkedRedisCacheLocation": "South Central US", - "serverRole": "Secondary", - "provisioningState": "Syncing" - } + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241", + "name": "f574ee71-d976-4c27-ad8b-355dd0424241", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/redis/RedisGeo15985/linkedServers/RedisGeo28516?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d03f51990550b740b4018f25d5a7bed1-1d9f99eb299e4545-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "fefe7128a69686266cc3c789d7954d81", + "traceparent": "00-66ca5142c0645ba8e765c4b08a407620-2943b61d157d8c2e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c604603a8ef7be0a2acc08e4afa95c8d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "fefe7128a69686266cc3c789d7954d81", - "Content-Length": "493", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:04:34 GMT", + "client-request-id": "c604603a8ef7be0a2acc08e4afa95c8d", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:17:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7690b04a-7253-42d2-ae76-8326f32e6b71", - "x-ms-ratelimit-remaining-subscription-reads": "11919", - "x-ms-request-id": "c7d109bd-d679-4b61-ab66-2deb87e586fc", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T040434Z:7690b04a-7253-42d2-ae76-8326f32e6b71", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "16f03144-662a-486a-9f5e-1e04f3d85d59", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "a3507aec-21e6-44cf-ba33-fb3efc915443", + "x-ms-routing-request-id": "WESTUS2:20221026T061730Z:16f03144-662a-486a-9f5e-1e04f3d85d59", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo15985/linkedServers/RedisGeo28516", - "name": "RedisGeo28516", - "type": "Microsoft.Cache/Redis/linkedServers", - "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo28516", - "linkedRedisCacheLocation": "South Central US", - "serverRole": "Secondary", - "provisioningState": "Syncing" - } + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241", + "name": "f574ee71-d976-4c27-ad8b-355dd0424241", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-66ca5142c0645ba8e765c4b08a407620-73ffe6e4f26f1401-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "50c343d4e40be4b7c47d6b1e0075b560", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "50c343d4e40be4b7c47d6b1e0075b560", + "Content-Length": "361", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:18:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c5d72db0-047c-4e3f-97ce-1ebf6d55584e", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "928ed0a5-f265-463f-b6a5-766ff74cb1e3", + "x-ms-routing-request-id": "WESTUS2:20221026T061803Z:c5d72db0-047c-4e3f-97ce-1ebf6d55584e", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/f574ee71-d976-4c27-ad8b-355dd0424241", + "name": "f574ee71-d976-4c27-ad8b-355dd0424241", + "status": "Succeeded", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/redis/RedisGeo15985/linkedServers/RedisGeo28516?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4023/providers/Microsoft.Cache/redis/RedisGeo15727/linkedServers/RedisGeo21526?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d03f51990550b740b4018f25d5a7bed1-3a3c47be619e0440-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "015e53340f4a65a91ffc8b275a215bc9", + "traceparent": "00-66ca5142c0645ba8e765c4b08a407620-3c300d691100057f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "8e9670d10bb30da8f21cdfe8c38e82de", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "015e53340f4a65a91ffc8b275a215bc9", - "Content-Length": "495", + "client-request-id": "8e9670d10bb30da8f21cdfe8c38e82de", + "Content-Length": "628", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:05:06 GMT", + "Date": "Wed, 26 Oct 2022 06:18:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "55730ebe-b087-414b-b6d6-f17607767621", - "x-ms-ratelimit-remaining-subscription-reads": "11918", - "x-ms-request-id": "8cc188b6-95ae-4cab-b668-f8242378aa64", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T040507Z:55730ebe-b087-414b-b6d6-f17607767621", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "f4ca81fb-e4fd-45c4-bc90-a8baa176cddf", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "3f5766e2-50e0-4ea8-9fbd-51193d7ddf93", + "x-ms-routing-request-id": "WESTUS2:20221026T061804Z:f4ca81fb-e4fd-45c4-bc90-a8baa176cddf", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo15985/linkedServers/RedisGeo28516", - "name": "RedisGeo28516", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4023/providers/Microsoft.Cache/Redis/RedisGeo15727/linkedServers/RedisGeo21526", + "name": "RedisGeo21526", "type": "Microsoft.Cache/Redis/linkedServers", "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo28516", + "linkedRedisCacheId": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4023/providers/Microsoft.Cache/Redis/RedisGeo21526", "linkedRedisCacheLocation": "South Central US", "serverRole": "Secondary", + "geoReplicatedPrimaryHostName": "RedisGeo21526.geo.redis.cache.windows.net", + "primaryHostName": "RedisGeo15727.redis.cache.windows.net", "provisioningState": "Succeeded" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/redis/RedisGeo15985/linkedServers/RedisGeo28516?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4023/providers/Microsoft.Cache/redis/RedisGeo15727/linkedServers/RedisGeo21526?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-2d267303c9ad7f4c85ec59f84f0e2697-b7fda74d75c47d49-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "801008122b4d387f25e303cc9553fabe", + "traceparent": "00-12069c7ce35d8bbf0f716c78ac8c76b3-c94ddf01ad02f861-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b3921cc0211e56faa920017a22ecbdb4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "801008122b4d387f25e303cc9553fabe", - "Content-Length": "495", + "client-request-id": "b3921cc0211e56faa920017a22ecbdb4", + "Content-Length": "628", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:05:07 GMT", + "Date": "Wed, 26 Oct 2022 06:18:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fc7f6625-c782-4d19-bc03-c38123df7782", - "x-ms-ratelimit-remaining-subscription-reads": "11917", - "x-ms-request-id": "9ee1dfec-120e-4f86-b914-f48eb802e979", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T040507Z:fc7f6625-c782-4d19-bc03-c38123df7782", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "b69f5590-b2e5-4316-acd7-bc66c7394ecb", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "a4b792c3-05f3-4b91-b225-f4157ba3efa8", + "x-ms-routing-request-id": "WESTUS2:20221026T061806Z:b69f5590-b2e5-4316-acd7-bc66c7394ecb", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo15985/linkedServers/RedisGeo28516", - "name": "RedisGeo28516", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4023/providers/Microsoft.Cache/Redis/RedisGeo15727/linkedServers/RedisGeo21526", + "name": "RedisGeo21526", "type": "Microsoft.Cache/Redis/linkedServers", "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo28516", + "linkedRedisCacheId": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4023/providers/Microsoft.Cache/Redis/RedisGeo21526", "linkedRedisCacheLocation": "South Central US", "serverRole": "Secondary", + "geoReplicatedPrimaryHostName": "RedisGeo21526.geo.redis.cache.windows.net", + "primaryHostName": "RedisGeo15727.redis.cache.windows.net", "provisioningState": "Succeeded" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/redis/RedisGeo15985/linkedServers?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4023/providers/Microsoft.Cache/redis/RedisGeo15727/linkedServers?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-8adfd8b36e23e949a7d40feeb4750769-a6711ae889493642-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "87449ede9cee189ac899df9a1bff2b4a", + "traceparent": "00-d36ceb27cb681db84eb13d233b0cb759-d50d7ef26dc52b6f-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3e12a716cd13c9d99bb65def04ce2036", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "87449ede9cee189ac899df9a1bff2b4a", - "Content-Length": "507", + "client-request-id": "3e12a716cd13c9d99bb65def04ce2036", + "Content-Length": "640", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:05:07 GMT", + "Date": "Wed, 26 Oct 2022 06:18:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "56d8c5d2-e64c-4558-8448-18a91e4f52e4", - "x-ms-ratelimit-remaining-subscription-reads": "11916", - "x-ms-request-id": "e15e1a4e-96e9-465e-9c20-7c6813b7c1e9", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T040508Z:56d8c5d2-e64c-4558-8448-18a91e4f52e4", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "6f3f073c-5371-4811-818b-5fde7a1a299a", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "8e01491a-508a-4665-bea4-aeab2d67168b", + "x-ms-routing-request-id": "WESTUS2:20221026T061807Z:6f3f073c-5371-4811-818b-5fde7a1a299a", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo15985/linkedServers/RedisGeo28516", - "name": "RedisGeo28516", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4023/providers/Microsoft.Cache/Redis/RedisGeo15727/linkedServers/RedisGeo21526", + "name": "RedisGeo21526", "type": "Microsoft.Cache/Redis/linkedServers", "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo28516", + "linkedRedisCacheId": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4023/providers/Microsoft.Cache/Redis/RedisGeo21526", "linkedRedisCacheLocation": "South Central US", "serverRole": "Secondary", + "geoReplicatedPrimaryHostName": "RedisGeo21526.geo.redis.cache.windows.net", + "primaryHostName": "RedisGeo15727.redis.cache.windows.net", "provisioningState": "Succeeded" } } @@ -3675,87 +3712,91 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/redis/RedisGeo28516/linkedServers/RedisGeo15985?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4023/providers/Microsoft.Cache/redis/RedisGeo21526/linkedServers/RedisGeo15727?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-cc2ace44a3b63e49b76a0f1056a040bc-55a17f56555e4646-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ce76fd68cd840933d326db660cdccfcb", + "traceparent": "00-611af1cdb28621839bf6359c933b49c8-7938677f6d2994e0-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e35d8dfb02e3b042753fe593092dea06", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "ce76fd68cd840933d326db660cdccfcb", - "Content-Length": "493", + "client-request-id": "e35d8dfb02e3b042753fe593092dea06", + "Content-Length": "626", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:05:09 GMT", + "Date": "Wed, 26 Oct 2022 06:18:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f7f4eb77-5680-4fe5-b7d0-176748a00601", - "x-ms-ratelimit-remaining-subscription-reads": "11915", - "x-ms-request-id": "cceb6a68-844b-4b46-9e9c-b3e64d7e6a69", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T040510Z:f7f4eb77-5680-4fe5-b7d0-176748a00601", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "3c8714de-719e-4349-849d-fe56ee51caad", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "1d1609ac-9dc0-4e11-9893-5745f46dd487", + "x-ms-routing-request-id": "WESTUS2:20221026T061809Z:3c8714de-719e-4349-849d-fe56ee51caad", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo28516/linkedServers/RedisGeo15985", - "name": "RedisGeo15985", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4023/providers/Microsoft.Cache/Redis/RedisGeo21526/linkedServers/RedisGeo15727", + "name": "RedisGeo15727", "type": "Microsoft.Cache/Redis/linkedServers", "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo15985", + "linkedRedisCacheId": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4023/providers/Microsoft.Cache/Redis/RedisGeo15727", "linkedRedisCacheLocation": "North Central US", "serverRole": "Primary", + "geoReplicatedPrimaryHostName": "RedisGeo15727.geo.redis.cache.windows.net", + "primaryHostName": "RedisGeo15727.redis.cache.windows.net", "provisioningState": "Succeeded" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/redis/RedisGeo28516/linkedServers?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4023/providers/Microsoft.Cache/redis/RedisGeo21526/linkedServers?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-cfa2af570841de418de1227e4836b7f4-4d3b1403d0273043-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "bb49cc01d3dd76da6df8b7b34ce51d26", + "traceparent": "00-227a58457e5fef90c914c77c19f70c53-61dbff54c67c8077-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1cd22b5e437bf2ca43c91867c30b52da", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "bb49cc01d3dd76da6df8b7b34ce51d26", - "Content-Length": "505", + "client-request-id": "1cd22b5e437bf2ca43c91867c30b52da", + "Content-Length": "638", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:05:09 GMT", + "Date": "Wed, 26 Oct 2022 06:18:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3592088f-37d4-4b1f-b844-af99698fa969", - "x-ms-ratelimit-remaining-subscription-reads": "11914", - "x-ms-request-id": "757bbf07-6d94-4d73-9665-f85d92ba9ed1", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T040510Z:3592088f-37d4-4b1f-b844-af99698fa969", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "0804940d-dea0-4890-a5eb-fedfdfb704b1", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "b29927f9-8800-4c75-b7be-4b83d48fb478", + "x-ms-routing-request-id": "WESTUS2:20221026T061809Z:0804940d-dea0-4890-a5eb-fedfdfb704b1", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo28516/linkedServers/RedisGeo15985", - "name": "RedisGeo15985", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4023/providers/Microsoft.Cache/Redis/RedisGeo21526/linkedServers/RedisGeo15727", + "name": "RedisGeo15727", "type": "Microsoft.Cache/Redis/linkedServers", "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/Redis/RedisGeo15985", + "linkedRedisCacheId": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4023/providers/Microsoft.Cache/Redis/RedisGeo15727", "linkedRedisCacheLocation": "North Central US", "serverRole": "Primary", + "geoReplicatedPrimaryHostName": "RedisGeo15727.geo.redis.cache.windows.net", + "primaryHostName": "RedisGeo15727.redis.cache.windows.net", "provisioningState": "Succeeded" } } @@ -3763,69 +3804,441 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/redis/RedisGeo15985/linkedServers/RedisGeo28516?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4023/providers/Microsoft.Cache/redis/RedisGeo15727/linkedServers/RedisGeo21526?api-version=2022-06-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-eb60798e8153e545b43bbe675cf8d03c-5cbf42f348eb334a-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9764b8b72cdd103a6a3bb3c8c0340cec", + "traceparent": "00-b417102772160fa831374fd9c48e7343-1b3851fcfb0180ac-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "957fcb00da8e14d16562c8d3e745bf6d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 204, + "StatusCode": 202, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/d763e5f0-3aa7-4d8f-81b6-625021aa2baa?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "9764b8b72cdd103a6a3bb3c8c0340cec", - "Date": "Fri, 26 Aug 2022 04:05:13 GMT", + "client-request-id": "957fcb00da8e14d16562c8d3e745bf6d", + "Content-Length": "0", + "Date": "Wed, 26 Oct 2022 06:18:09 GMT", "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/d763e5f0-3aa7-4d8f-81b6-625021aa2baa?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "73a7d632-93a3-48be-9b9b-f91b05b5c7b9", - "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-request-id": "24289d7b-e2c1-47ad-9a68-fbbc3582636b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T040514Z:73a7d632-93a3-48be-9b9b-f91b05b5c7b9", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "66801453-fdd5-4ddd-b83a-89d83012cc56", + "x-ms-ratelimit-remaining-subscription-deletes": "14997", + "x-ms-request-id": "d763e5f0-3aa7-4d8f-81b6-625021aa2baa", + "x-ms-routing-request-id": "WESTUS2:20221026T061810Z:66801453-fdd5-4ddd-b83a-89d83012cc56", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-8694/providers/Microsoft.Cache/redis/RedisGeo28516/linkedServers/redisCacheName1?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/d763e5f0-3aa7-4d8f-81b6-625021aa2baa?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-b417102772160fa831374fd9c48e7343-eca51c9ad8508c2b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3e930aed55ae847859beb7197bf60afd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/d763e5f0-3aa7-4d8f-81b6-625021aa2baa?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "3e930aed55ae847859beb7197bf60afd", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:18:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "01092654-f0b0-4d2c-ac79-8094a2bc636d", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "168141f0-5884-46e4-8a2e-830c2e4bdb54", + "x-ms-routing-request-id": "WESTUS2:20221026T061810Z:01092654-f0b0-4d2c-ac79-8094a2bc636d", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/d763e5f0-3aa7-4d8f-81b6-625021aa2baa", + "name": "d763e5f0-3aa7-4d8f-81b6-625021aa2baa", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/d763e5f0-3aa7-4d8f-81b6-625021aa2baa?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-b417102772160fa831374fd9c48e7343-14ebf58f8eb3fb00-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6d9cab09797afcde10c8d2233ab72a8a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/d763e5f0-3aa7-4d8f-81b6-625021aa2baa?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "6d9cab09797afcde10c8d2233ab72a8a", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:18:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2177eb21-e26a-4326-9ea1-ba7f4d6ff139", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "2713050f-8ea3-4944-a4f3-4e447adaa5f2", + "x-ms-routing-request-id": "WESTUS2:20221026T061811Z:2177eb21-e26a-4326-9ea1-ba7f4d6ff139", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/d763e5f0-3aa7-4d8f-81b6-625021aa2baa", + "name": "d763e5f0-3aa7-4d8f-81b6-625021aa2baa", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/d763e5f0-3aa7-4d8f-81b6-625021aa2baa?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-b417102772160fa831374fd9c48e7343-4f1c463e739959c1-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "dde65d7581b276bede0c7f3e4ca13ccb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/d763e5f0-3aa7-4d8f-81b6-625021aa2baa?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "dde65d7581b276bede0c7f3e4ca13ccb", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:18:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "793ff6ba-6ac4-4ae0-966a-ffed1d981793", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "a6c59eb7-e9dd-4b66-b10c-6a2254ce470f", + "x-ms-routing-request-id": "WESTUS2:20221026T061812Z:793ff6ba-6ac4-4ae0-966a-ffed1d981793", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/d763e5f0-3aa7-4d8f-81b6-625021aa2baa", + "name": "d763e5f0-3aa7-4d8f-81b6-625021aa2baa", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/d763e5f0-3aa7-4d8f-81b6-625021aa2baa?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-b417102772160fa831374fd9c48e7343-5f493f2bbda92cba-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3e10a2607f3e74f02c962de682554aa2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/d763e5f0-3aa7-4d8f-81b6-625021aa2baa?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "3e10a2607f3e74f02c962de682554aa2", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:18:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7c9ab736-8d4b-4010-ad9f-e183ddad8d01", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "f2c7c324-b473-4775-82de-f4f4e9d938fb", + "x-ms-routing-request-id": "WESTUS2:20221026T061813Z:7c9ab736-8d4b-4010-ad9f-e183ddad8d01", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/d763e5f0-3aa7-4d8f-81b6-625021aa2baa", + "name": "d763e5f0-3aa7-4d8f-81b6-625021aa2baa", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/d763e5f0-3aa7-4d8f-81b6-625021aa2baa?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-b417102772160fa831374fd9c48e7343-344e8c86ca5acb40-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1da32c942d10884aec258f6df99faf6f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/d763e5f0-3aa7-4d8f-81b6-625021aa2baa?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "1da32c942d10884aec258f6df99faf6f", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:18:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7995154b-4292-4019-8bff-e0bffc4aac12", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "d7dc1cdb-a0db-4b5e-b124-3209ecf5676c", + "x-ms-routing-request-id": "WESTUS2:20221026T061815Z:7995154b-4292-4019-8bff-e0bffc4aac12", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/d763e5f0-3aa7-4d8f-81b6-625021aa2baa", + "name": "d763e5f0-3aa7-4d8f-81b6-625021aa2baa", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/d763e5f0-3aa7-4d8f-81b6-625021aa2baa?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-b417102772160fa831374fd9c48e7343-c49774fe34c473be-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "97c2068ceba7f64c6d72b01c53d7f388", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/d763e5f0-3aa7-4d8f-81b6-625021aa2baa?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "97c2068ceba7f64c6d72b01c53d7f388", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:18:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "eeb05948-c3b3-4082-bb47-a77620c78f60", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "5888d732-7d49-4c69-a164-24a8a91f44ef", + "x-ms-routing-request-id": "WESTUS2:20221026T061819Z:eeb05948-c3b3-4082-bb47-a77620c78f60", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/d763e5f0-3aa7-4d8f-81b6-625021aa2baa", + "name": "d763e5f0-3aa7-4d8f-81b6-625021aa2baa", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/d763e5f0-3aa7-4d8f-81b6-625021aa2baa?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-b417102772160fa831374fd9c48e7343-60586d0095fd6486-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "20aaddc21efe32bb57875218f0837a8d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/d763e5f0-3aa7-4d8f-81b6-625021aa2baa?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "20aaddc21efe32bb57875218f0837a8d", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:18:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "efa93df3-5e87-4075-9543-141787827f84", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "fcc426bc-28a0-4b1c-8067-60935b376aae", + "x-ms-routing-request-id": "WESTUS2:20221026T061828Z:efa93df3-5e87-4075-9543-141787827f84", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/d763e5f0-3aa7-4d8f-81b6-625021aa2baa", + "name": "d763e5f0-3aa7-4d8f-81b6-625021aa2baa", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/d763e5f0-3aa7-4d8f-81b6-625021aa2baa?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-b417102772160fa831374fd9c48e7343-9b3d2929695e4d03-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7c5abde6b292a8fadfacaf9e7d2e3414", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/d763e5f0-3aa7-4d8f-81b6-625021aa2baa?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "7c5abde6b292a8fadfacaf9e7d2e3414", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:18:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "81a28b4a-1b90-48b0-8ec8-1f16f21ba826", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "5e5f74a5-aa83-4c16-9eae-a72a48271932", + "x-ms-routing-request-id": "WESTUS2:20221026T061844Z:81a28b4a-1b90-48b0-8ec8-1f16f21ba826", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/d763e5f0-3aa7-4d8f-81b6-625021aa2baa", + "name": "d763e5f0-3aa7-4d8f-81b6-625021aa2baa", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/d763e5f0-3aa7-4d8f-81b6-625021aa2baa?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-b417102772160fa831374fd9c48e7343-ee99e49768f28099-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1caa06328ff56d714b903f1f993306e9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/d763e5f0-3aa7-4d8f-81b6-625021aa2baa?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "1caa06328ff56d714b903f1f993306e9", + "Content-Length": "361", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:19:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4fc86949-405d-47c4-a871-1b616e8772d9", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "437ad45c-15ae-415b-bc3f-c41164cf1319", + "x-ms-routing-request-id": "WESTUS2:20221026T061916Z:4fc86949-405d-47c4-a871-1b616e8772d9", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/d763e5f0-3aa7-4d8f-81b6-625021aa2baa", + "name": "d763e5f0-3aa7-4d8f-81b6-625021aa2baa", + "status": "Succeeded", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4023/providers/Microsoft.Cache/redis/RedisGeo21526/linkedServers/redisCacheName1?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-f67f90f021d2d84599eebc1e61c5e6d6-c8d3cca870d4f841-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4e9813ca70b6946d2300608c157fbcee", + "traceparent": "00-fee1b95abe98a5f502ff2bfdab5fd287-5a5d50f1e47f94d1-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "953523f8777d0ff5e20140516f1cb529", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "4e9813ca70b6946d2300608c157fbcee", + "client-request-id": "953523f8777d0ff5e20140516f1cb529", "Content-Length": "188", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:05:14 GMT", + "Date": "Wed, 26 Oct 2022 06:19:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6c5eae22-59dc-429b-8634-406d7c16a255", - "x-ms-ratelimit-remaining-subscription-reads": "11913", - "x-ms-request-id": "cb8e2481-6b7d-44e3-8b75-b5ac829cf20f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T040514Z:6c5eae22-59dc-429b-8634-406d7c16a255", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "5dd6cfac-c360-4b71-9887-6617dd23c5cb", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "4caa5801-0727-49b6-b6d5-a798d04cf2ce", + "x-ms-routing-request-id": "WESTUS2:20221026T061916Z:5dd6cfac-c360-4b71-9887-6617dd23c5cb", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "A requested resource could not be found. It may already have been deleted.\r\nRequestID=cb8e2481-6b7d-44e3-8b75-b5ac829cf20f", + "message": "A requested resource could not be found. It may already have been deleted.\r\nRequestID=4caa5801-0727-49b6-b6d5-a798d04cf2ce", "target": null } } @@ -3833,8 +4246,8 @@ ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "837909899", + "RandomSeed": "1564932343", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + "SUBSCRIPTION_ID": "3919658b-68ae-4509-8c17-6a2238340ae7" } } diff --git a/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/GeoReplicationFunctionalTests/CreateUpdateDeleteTestAsync.json b/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/GeoReplicationFunctionalTests/CreateUpdateDeleteTestAsync.json index 15374afb5365..f098133c6e03 100644 --- a/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/GeoReplicationFunctionalTests/CreateUpdateDeleteTestAsync.json +++ b/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/GeoReplicationFunctionalTests/CreateUpdateDeleteTestAsync.json @@ -1,52 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-149e82850bc98b4e99eb20b236a35680-edfe9b25038ec94c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "834467b679960fa6ae24766198c975e1", + "traceparent": "00-ae4d64242cc04294f235c341e791f93a-9deeb448cf00d6fb-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "45f0bb1db355bd5eaef21c460487cbc8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "747", + "Content-Length": "405", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:11:40 GMT", + "Date": "Wed, 26 Oct 2022 06:19:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e9b93bc0-89a4-4819-bd6b-6e137327867a", - "x-ms-ratelimit-remaining-subscription-reads": "11912", - "x-ms-request-id": "e9b93bc0-89a4-4819-bd6b-6e137327867a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T041140Z:e9b93bc0-89a4-4819-bd6b-6e137327867a" + "x-ms-correlation-request-id": "b8d369c3-a0a9-4593-b9fa-cd6122520121", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "b8d369c3-a0a9-4593-b9fa-cd6122520121", + "x-ms-routing-request-id": "WESTUS2:20221026T061918Z:b8d369c3-a0a9-4593-b9fa-cd6122520121" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7", "authorizationSource": "RoleBased", "managedByTenants": [], - "tags": { - "TagKey-9823": "TagValue-566", - "TagKey-3481": "TagValue-320", - "TagKey-4926": "TagValue-1187", - "TagKey-751": "TagValue-3921", - "TagKey-1866": "TagValue-8559", - "TagKey-3094": "TagValue-9190", - "TagKey-2449": "TagValue-9", - "TagKey-8379": "TagValue-164", - "TagKey-7470": "TagValue-2205", - "TagKey-4236": "TagValue-3698", - "TagKey-5316": "TagValue-2725" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "subscriptionId": "3919658b-68ae-4509-8c17-6a2238340ae7", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "displayName": "CacheTeam - Austin Tolani", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -56,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRG-3724?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/testRG-4921?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "43", "Content-Type": "application/json", - "traceparent": "00-4137d6c8dca00745a8839600264a1f49-c3c32c862752684d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "54054587c43cb1f0570d76b76a868521", + "traceparent": "00-3c79d096e73e2de404e85dddc951714b-b1d70ebaad2f7f42-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ace03f8a0e803551d3bbd2d8d5ed333f", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -79,19 +66,19 @@ "Cache-Control": "no-cache", "Content-Length": "241", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:11:44 GMT", + "Date": "Wed, 26 Oct 2022 06:19:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7dfb117d-8b30-40b5-b993-5bc1e7fbece7", - "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "7dfb117d-8b30-40b5-b993-5bc1e7fbece7", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T041145Z:7dfb117d-8b30-40b5-b993-5bc1e7fbece7" + "x-ms-correlation-request-id": "ab673c54-dc9e-4031-8baa-a765114b38b9", + "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-request-id": "ab673c54-dc9e-4031-8baa-a765114b38b9", + "x-ms-routing-request-id": "WESTUS2:20221026T061919Z:ab673c54-dc9e-4031-8baa-a765114b38b9" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724", - "name": "testRG-3724", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4921", + "name": "testRG-4921", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "tags": { @@ -103,16 +90,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/redis/RedisGeo1116?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4921/providers/Microsoft.Cache/redis/RedisGeo16773?api-version=2022-06-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "95", "Content-Type": "application/json", - "traceparent": "00-f94e83b531145e44a2087ec962f9ae9f-7dcf1beceeddfd47-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "82f9cda0e4a965f3905698f4bc14bf08", + "traceparent": "00-2fa198442079b916912957a97bd5fbe0-8e7307d629b0bb8f-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ce79845545c42e95697416d8d8a4ca60", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -127,33 +114,33 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "82f9cda0e4a965f3905698f4bc14bf08", + "client-request-id": "ce79845545c42e95697416d8d8a4ca60", "Content-Length": "820", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:11:52 GMT", + "Date": "Wed, 26 Oct 2022 06:19:22 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/redis/RedisGeo1116?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4921/providers/Microsoft.Cache/redis/RedisGeo16773?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "04947caf-6784-4bb6-8bd3-8a14846bab84", - "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-request-id": "2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T041153Z:04947caf-6784-4bb6-8bd3-8a14846bab84", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "f5fac578-c12c-4f50-a3b7-4414472ff677", + "x-ms-ratelimit-remaining-subscription-writes": "1186", + "x-ms-request-id": "c28758cf-b948-4c7a-bfef-7e1907b8fd6f", + "x-ms-routing-request-id": "WESTUS2:20221026T061922Z:f5fac578-c12c-4f50-a3b7-4414472ff677", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo1116", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4921/providers/Microsoft.Cache/Redis/RedisGeo16773", "location": "North Central US", - "name": "RedisGeo1116", + "name": "RedisGeo16773", "type": "Microsoft.Cache/Redis", "tags": {}, "properties": { "provisioningState": "Creating", - "redisVersion": "4.0.14", + "redisVersion": "6.0", "sku": { "name": "Premium", "family": "P", @@ -183,7 +170,7 @@ "primaryKey": "Sanitized", "secondaryKey": "Sanitized" }, - "hostName": "RedisGeo1116.redis.cache.windows.net", + "hostName": "RedisGeo16773.redis.cache.windows.net", "port": 6379, "sslPort": 6380, "linkedServers": [] @@ -191,79 +178,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-f94e83b531145e44a2087ec962f9ae9f-5bf1acdc7ddd8041-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "13d489870531209b61d6349918625061", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", - "Cache-Control": "no-cache", - "client-request-id": "13d489870531209b61d6349918625061", - "Content-Length": "362", - "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:11:52 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "82c7b726-10ea-402e-92b5-7797857dfa2c", - "x-ms-ratelimit-remaining-subscription-reads": "11911", - "x-ms-request-id": "b60ed013-b0f0-44e2-ad48-5c49c0eb2db5", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T041153Z:82c7b726-10ea-402e-92b5-7797857dfa2c", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", - "name": "2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", - "status": "InProgress", - "startTime": null, - "endTime": null, - "percentComplete": null, - "properties": null, - "error": null - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f94e83b531145e44a2087ec962f9ae9f-b258f0c2df89d747-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "be4461f8d33bfdc67926433cb49b20f2", + "traceparent": "00-2fa198442079b916912957a97bd5fbe0-9a5e04c1fbf94207-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4376a06bbb139b7a1652a4dd1ffae32e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "be4461f8d33bfdc67926433cb49b20f2", + "client-request-id": "4376a06bbb139b7a1652a4dd1ffae32e", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:11:54 GMT", + "Date": "Wed, 26 Oct 2022 06:19:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4a806d4a-bf4c-4fa9-8b57-bb1b057a6387", - "x-ms-ratelimit-remaining-subscription-reads": "11910", - "x-ms-request-id": "53cdefe0-9741-49db-a23c-f958d81f89bd", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T041154Z:4a806d4a-bf4c-4fa9-8b57-bb1b057a6387", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "87db233f-8c39-48e3-ba14-3f7d5a111483", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "9517d5c1-4213-4638-a92c-8ba4dfd27edd", + "x-ms-routing-request-id": "WESTUS2:20221026T061922Z:87db233f-8c39-48e3-ba14-3f7d5a111483", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", - "name": "2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f", + "name": "c28758cf-b948-4c7a-bfef-7e1907b8fd6f", "status": "InProgress", "startTime": null, "endTime": null, @@ -273,38 +219,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f94e83b531145e44a2087ec962f9ae9f-c4c5d55cc0b36f45-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "336c5965ab3f3cd72ac5dca36ebabadc", + "traceparent": "00-2fa198442079b916912957a97bd5fbe0-9a2fcbec034a4ec8-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3d42740e81a8a74ae6684bcdb9b05464", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "336c5965ab3f3cd72ac5dca36ebabadc", + "client-request-id": "3d42740e81a8a74ae6684bcdb9b05464", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:11:55 GMT", + "Date": "Wed, 26 Oct 2022 06:19:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a2f3dc3f-3288-4954-ae6a-8e1bf4603d75", - "x-ms-ratelimit-remaining-subscription-reads": "11909", - "x-ms-request-id": "f62b7e09-0dae-4ef2-8ecc-1de2a039522b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T041156Z:a2f3dc3f-3288-4954-ae6a-8e1bf4603d75", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "7035df7a-8d35-4c26-8fe8-a1ec89b2292a", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "0f997794-ae0c-4496-afc4-b773e869dc49", + "x-ms-routing-request-id": "WESTUS2:20221026T061923Z:7035df7a-8d35-4c26-8fe8-a1ec89b2292a", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", - "name": "2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f", + "name": "c28758cf-b948-4c7a-bfef-7e1907b8fd6f", "status": "InProgress", "startTime": null, "endTime": null, @@ -314,38 +260,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f94e83b531145e44a2087ec962f9ae9f-f2c6963bc9f0604c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e35ece1c3259b403c2d7990ac15f6cc6", + "traceparent": "00-2fa198442079b916912957a97bd5fbe0-c6dba60e979f93b1-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "376d0e8b872eee4c7afb014909c1f187", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "e35ece1c3259b403c2d7990ac15f6cc6", + "client-request-id": "376d0e8b872eee4c7afb014909c1f187", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:11:56 GMT", + "Date": "Wed, 26 Oct 2022 06:19:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7facb72e-fd84-4ff9-b49b-bc50b20cc824", - "x-ms-ratelimit-remaining-subscription-reads": "11908", - "x-ms-request-id": "5583afba-6e94-4444-a73d-74a4ed36568e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T041157Z:7facb72e-fd84-4ff9-b49b-bc50b20cc824", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "e8b35680-649e-4564-bdac-bf8a8ffb5f5c", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "b13c0f80-73ce-484f-9dd1-8b0511c1ebcc", + "x-ms-routing-request-id": "WESTUS2:20221026T061924Z:e8b35680-649e-4564-bdac-bf8a8ffb5f5c", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", - "name": "2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f", + "name": "c28758cf-b948-4c7a-bfef-7e1907b8fd6f", "status": "InProgress", "startTime": null, "endTime": null, @@ -355,38 +301,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f94e83b531145e44a2087ec962f9ae9f-df91a0406c6d934a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "be3441b61df54d228a089375f6238fbf", + "traceparent": "00-2fa198442079b916912957a97bd5fbe0-9020242e50ad4bd6-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "64d65d13abc2ea5e56ce5dab70ade165", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "be3441b61df54d228a089375f6238fbf", + "client-request-id": "64d65d13abc2ea5e56ce5dab70ade165", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:11:59 GMT", + "Date": "Wed, 26 Oct 2022 06:19:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e058e73b-f0bd-480a-966a-2aeb722171eb", - "x-ms-ratelimit-remaining-subscription-reads": "11907", - "x-ms-request-id": "a9b48ed3-3f35-466c-b051-0508c4378995", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T041159Z:e058e73b-f0bd-480a-966a-2aeb722171eb", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "eb2b1e11-1663-405c-a9eb-a130d2926213", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "3dac439c-cb99-4b27-b32a-2579758e1c12", + "x-ms-routing-request-id": "WESTUS2:20221026T061925Z:eb2b1e11-1663-405c-a9eb-a130d2926213", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", - "name": "2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f", + "name": "c28758cf-b948-4c7a-bfef-7e1907b8fd6f", "status": "InProgress", "startTime": null, "endTime": null, @@ -396,38 +342,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f94e83b531145e44a2087ec962f9ae9f-59b1f3892b07ee4d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e520676b3d3c339955b8716811cc7acb", + "traceparent": "00-2fa198442079b916912957a97bd5fbe0-8f9f96aa16f81bc9-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "105240fdab8d86ff2753c2ac7f009e25", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "e520676b3d3c339955b8716811cc7acb", + "client-request-id": "105240fdab8d86ff2753c2ac7f009e25", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:12:03 GMT", + "Date": "Wed, 26 Oct 2022 06:19:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b59684cb-5082-4ba9-917b-1f764bfaeb29", - "x-ms-ratelimit-remaining-subscription-reads": "11906", - "x-ms-request-id": "4a0703e1-c378-43b2-9cdb-7065ad5e2322", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T041204Z:b59684cb-5082-4ba9-917b-1f764bfaeb29", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "2cbce497-3e16-4f1f-a8e8-6f9fccd0eb65", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "1fae1d68-4227-4eaa-8516-eea621a77bf6", + "x-ms-routing-request-id": "WESTUS2:20221026T061927Z:2cbce497-3e16-4f1f-a8e8-6f9fccd0eb65", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", - "name": "2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f", + "name": "c28758cf-b948-4c7a-bfef-7e1907b8fd6f", "status": "InProgress", "startTime": null, "endTime": null, @@ -437,38 +383,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f94e83b531145e44a2087ec962f9ae9f-b492ef2902c90f42-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "2ced1659fb85ffe6ac1159509e8dbe9e", + "traceparent": "00-2fa198442079b916912957a97bd5fbe0-9483c141f1188615-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5cb9c377f0d9dfa1af82e15f29a17ecd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "2ced1659fb85ffe6ac1159509e8dbe9e", + "client-request-id": "5cb9c377f0d9dfa1af82e15f29a17ecd", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:12:11 GMT", + "Date": "Wed, 26 Oct 2022 06:19:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1b36a319-978b-4e1b-a188-cff0608c9c9d", - "x-ms-ratelimit-remaining-subscription-reads": "11905", - "x-ms-request-id": "77cd126a-79bf-4d17-97f3-aedb1f5bf81a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T041212Z:1b36a319-978b-4e1b-a188-cff0608c9c9d", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "4b577ae1-7adf-4499-bb64-4efe111380b5", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "4c99d36f-00ea-4fa3-b5c3-228a54a9c120", + "x-ms-routing-request-id": "WESTUS2:20221026T061931Z:4b577ae1-7adf-4499-bb64-4efe111380b5", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", - "name": "2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f", + "name": "c28758cf-b948-4c7a-bfef-7e1907b8fd6f", "status": "InProgress", "startTime": null, "endTime": null, @@ -478,38 +424,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f94e83b531145e44a2087ec962f9ae9f-a9c9348b3ea1b643-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5a9eda47863e7889a701693dabba3cbd", + "traceparent": "00-2fa198442079b916912957a97bd5fbe0-913f7572e78481b4-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c94c9b1ae16f67fa5d503d6fe8b26a55", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "5a9eda47863e7889a701693dabba3cbd", + "client-request-id": "c94c9b1ae16f67fa5d503d6fe8b26a55", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:12:28 GMT", + "Date": "Wed, 26 Oct 2022 06:19:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "381400a1-7239-4e94-9a39-b8d33167d8be", - "x-ms-ratelimit-remaining-subscription-reads": "11904", - "x-ms-request-id": "ab76765e-2f9e-4ea2-9b3a-ec5172bedbd1", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T041228Z:381400a1-7239-4e94-9a39-b8d33167d8be", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "399ce098-55c7-4505-bcb1-5a681214ac0f", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "769bf079-286b-4bdd-8b6d-b44686e18601", + "x-ms-routing-request-id": "WESTUS2:20221026T061940Z:399ce098-55c7-4505-bcb1-5a681214ac0f", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", - "name": "2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f", + "name": "c28758cf-b948-4c7a-bfef-7e1907b8fd6f", "status": "InProgress", "startTime": null, "endTime": null, @@ -519,38 +465,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f94e83b531145e44a2087ec962f9ae9f-5c7fe93348ac144c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e01cc78d6236703a8021392be44894c7", + "traceparent": "00-2fa198442079b916912957a97bd5fbe0-12bfec0370b3cea5-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ac33383085f40d8b9e72600acaa05d85", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "e01cc78d6236703a8021392be44894c7", + "client-request-id": "ac33383085f40d8b9e72600acaa05d85", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:13:00 GMT", + "Date": "Wed, 26 Oct 2022 06:19:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "51f69b68-4eaf-4f9b-b0ab-4fe840f587f5", - "x-ms-ratelimit-remaining-subscription-reads": "11903", - "x-ms-request-id": "e27ae8b1-aa8b-4922-8f2c-43708c7891a2", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T041301Z:51f69b68-4eaf-4f9b-b0ab-4fe840f587f5", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "be1d5304-a8b5-444e-8e45-e41b8ef62808", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "c5ef9ee5-e8b1-4c72-ae07-461cf1d8eadd", + "x-ms-routing-request-id": "WESTUS2:20221026T061956Z:be1d5304-a8b5-444e-8e45-e41b8ef62808", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", - "name": "2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f", + "name": "c28758cf-b948-4c7a-bfef-7e1907b8fd6f", "status": "InProgress", "startTime": null, "endTime": null, @@ -560,38 +506,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f94e83b531145e44a2087ec962f9ae9f-97b407e89416e24e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3720d2fa1f2ed38d8c74848492a853f2", + "traceparent": "00-2fa198442079b916912957a97bd5fbe0-f88e3c45f0426450-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e492f5d5d5b396b5c951fe89b232f7fd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "3720d2fa1f2ed38d8c74848492a853f2", + "client-request-id": "e492f5d5d5b396b5c951fe89b232f7fd", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:13:32 GMT", + "Date": "Wed, 26 Oct 2022 06:20:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ac4b2042-1bca-4a3f-9204-f1c6613538b9", - "x-ms-ratelimit-remaining-subscription-reads": "11902", - "x-ms-request-id": "bd7b5d4c-f742-40ca-a990-09bfe35409dc", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T041333Z:ac4b2042-1bca-4a3f-9204-f1c6613538b9", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "251ece56-6735-46aa-b995-96e0728be8cf", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "5a547d0a-7054-4510-aee0-a9151e456c52", + "x-ms-routing-request-id": "WESTUS2:20221026T062028Z:251ece56-6735-46aa-b995-96e0728be8cf", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", - "name": "2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f", + "name": "c28758cf-b948-4c7a-bfef-7e1907b8fd6f", "status": "InProgress", "startTime": null, "endTime": null, @@ -601,38 +547,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f94e83b531145e44a2087ec962f9ae9f-929b051922c3af41-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d6c39bd4dd71e568a02ed91d4c5e945f", + "traceparent": "00-2fa198442079b916912957a97bd5fbe0-632fa0dad991ce11-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f12e8c18d26e94d90f3f2afc80ef9dbc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "d6c39bd4dd71e568a02ed91d4c5e945f", + "client-request-id": "f12e8c18d26e94d90f3f2afc80ef9dbc", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:14:06 GMT", + "Date": "Wed, 26 Oct 2022 06:20:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e458e243-3116-4a7b-ac01-0ee12d6bf252", - "x-ms-ratelimit-remaining-subscription-reads": "11901", - "x-ms-request-id": "14b91726-da9b-489c-8829-df517786e0fa", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T041407Z:e458e243-3116-4a7b-ac01-0ee12d6bf252", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "76b11f05-a6e0-4bb1-94a8-c8d17d669321", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "feb6cae8-3ca0-44d6-8907-a3238da59e69", + "x-ms-routing-request-id": "WESTUS2:20221026T062100Z:76b11f05-a6e0-4bb1-94a8-c8d17d669321", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", - "name": "2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f", + "name": "c28758cf-b948-4c7a-bfef-7e1907b8fd6f", "status": "InProgress", "startTime": null, "endTime": null, @@ -642,38 +588,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f94e83b531145e44a2087ec962f9ae9f-21571cf2caa4074b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d943a26c05996d8f3a4953c2ddb5ded8", + "traceparent": "00-2fa198442079b916912957a97bd5fbe0-cb936021b32e8134-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f29ab7f386205ba1829de2a286015a6c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "d943a26c05996d8f3a4953c2ddb5ded8", + "client-request-id": "f29ab7f386205ba1829de2a286015a6c", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:14:39 GMT", + "Date": "Wed, 26 Oct 2022 06:21:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "47b2f9ec-e7a2-482a-8ace-42ff45982035", - "x-ms-ratelimit-remaining-subscription-reads": "11900", - "x-ms-request-id": "799194cb-0c16-425b-9a5d-726ada7979db", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T041439Z:47b2f9ec-e7a2-482a-8ace-42ff45982035", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "763d7773-b4b8-40a0-bb3d-28fd7676df36", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "9ebebbfb-95e8-4c5e-8974-d8973ac1426e", + "x-ms-routing-request-id": "WESTUS2:20221026T062132Z:763d7773-b4b8-40a0-bb3d-28fd7676df36", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", - "name": "2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f", + "name": "c28758cf-b948-4c7a-bfef-7e1907b8fd6f", "status": "InProgress", "startTime": null, "endTime": null, @@ -683,38 +629,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f94e83b531145e44a2087ec962f9ae9f-ae2d4534260bb542-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "485647cebd851c556a3a97ff4570862e", + "traceparent": "00-2fa198442079b916912957a97bd5fbe0-99e40debb9652995-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3df1637a6b7103171cfdd474aab915d9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "485647cebd851c556a3a97ff4570862e", + "client-request-id": "3df1637a6b7103171cfdd474aab915d9", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:15:11 GMT", + "Date": "Wed, 26 Oct 2022 06:22:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4fdf9310-457a-4625-8900-709a16f00c7e", - "x-ms-ratelimit-remaining-subscription-reads": "11899", - "x-ms-request-id": "7919a891-ea79-4c17-9992-51f26a49dd71", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T041512Z:4fdf9310-457a-4625-8900-709a16f00c7e", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "0fcb0925-0bba-4bc1-9785-f1fbd891722f", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "fb9cfe0c-a833-40e1-8f1c-f334bbd8c856", + "x-ms-routing-request-id": "WESTUS2:20221026T062204Z:0fcb0925-0bba-4bc1-9785-f1fbd891722f", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", - "name": "2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f", + "name": "c28758cf-b948-4c7a-bfef-7e1907b8fd6f", "status": "InProgress", "startTime": null, "endTime": null, @@ -724,38 +670,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f94e83b531145e44a2087ec962f9ae9f-fdc809b08dc63f4b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f01825e07964cf580c559c288aa607ea", + "traceparent": "00-2fa198442079b916912957a97bd5fbe0-650a643903b09fd6-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "fb9641b4049892dcead36fd1ef360e0e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "f01825e07964cf580c559c288aa607ea", + "client-request-id": "fb9641b4049892dcead36fd1ef360e0e", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:15:44 GMT", + "Date": "Wed, 26 Oct 2022 06:22:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b55eb27c-c6dd-4579-be1f-f7d79dfbddce", - "x-ms-ratelimit-remaining-subscription-reads": "11898", - "x-ms-request-id": "8c3bfd40-dfde-4c88-a74e-45aaa3192dc3", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T041544Z:b55eb27c-c6dd-4579-be1f-f7d79dfbddce", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "cb283638-bad9-4e30-a8a5-3aeacc5b68a6", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "03d2e13a-2554-47b6-bd89-7c580bc65df8", + "x-ms-routing-request-id": "WESTUS2:20221026T062236Z:cb283638-bad9-4e30-a8a5-3aeacc5b68a6", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", - "name": "2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f", + "name": "c28758cf-b948-4c7a-bfef-7e1907b8fd6f", "status": "InProgress", "startTime": null, "endTime": null, @@ -765,38 +711,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f94e83b531145e44a2087ec962f9ae9f-060b286fb6dd094a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "044e01504b07aed94c276f5e6e8f27c9", + "traceparent": "00-2fa198442079b916912957a97bd5fbe0-5f1e55a3b20df861-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1d82bde45ffe874b9f96d623b12db0c9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "044e01504b07aed94c276f5e6e8f27c9", + "client-request-id": "1d82bde45ffe874b9f96d623b12db0c9", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:16:16 GMT", + "Date": "Wed, 26 Oct 2022 06:23:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ba0eb095-cc9b-42f5-8b49-97748b836a33", - "x-ms-ratelimit-remaining-subscription-reads": "11897", - "x-ms-request-id": "32cec90d-b947-4ae7-93d9-4a11085d695f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T041616Z:ba0eb095-cc9b-42f5-8b49-97748b836a33", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "ee645e6b-031c-4f15-b173-c39c77da8eae", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "e3e7070b-bffc-487e-bb84-e9dbadc37c89", + "x-ms-routing-request-id": "WESTUS2:20221026T062308Z:ee645e6b-031c-4f15-b173-c39c77da8eae", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", - "name": "2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f", + "name": "c28758cf-b948-4c7a-bfef-7e1907b8fd6f", "status": "InProgress", "startTime": null, "endTime": null, @@ -806,38 +752,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f94e83b531145e44a2087ec962f9ae9f-0e5ef50b80c7a942-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b7e124c2ed9d5473ef873b30212d92c4", + "traceparent": "00-2fa198442079b916912957a97bd5fbe0-9fd8c7230e2ab133-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "44ee09875f6a76d4865f539efc4614e5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "b7e124c2ed9d5473ef873b30212d92c4", + "client-request-id": "44ee09875f6a76d4865f539efc4614e5", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:16:49 GMT", + "Date": "Wed, 26 Oct 2022 06:23:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dd5c6fab-d28d-4f83-adf8-7343580f3444", - "x-ms-ratelimit-remaining-subscription-reads": "11896", - "x-ms-request-id": "7fd6a165-a5ac-4c74-be3d-c5e794b39aad", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T041649Z:dd5c6fab-d28d-4f83-adf8-7343580f3444", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "67c98f1b-a202-4c13-a8c5-e40742b7814b", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "8008a72d-2dfb-4668-8fc5-9d4a43612c99", + "x-ms-routing-request-id": "WESTUS2:20221026T062340Z:67c98f1b-a202-4c13-a8c5-e40742b7814b", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", - "name": "2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f", + "name": "c28758cf-b948-4c7a-bfef-7e1907b8fd6f", "status": "InProgress", "startTime": null, "endTime": null, @@ -847,38 +793,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f94e83b531145e44a2087ec962f9ae9f-73a40d0d4fa4164c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "44afac32812194274c69a33d0af9617d", + "traceparent": "00-2fa198442079b916912957a97bd5fbe0-9d09a21e29cb0245-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ed8fc6eef83654dbf60f5b012eb9e1bd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "44afac32812194274c69a33d0af9617d", + "client-request-id": "ed8fc6eef83654dbf60f5b012eb9e1bd", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:17:21 GMT", + "Date": "Wed, 26 Oct 2022 06:24:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ca89d964-58f7-46d5-b8c0-fae34d86344a", - "x-ms-ratelimit-remaining-subscription-reads": "11895", - "x-ms-request-id": "0cd5cb9b-17c2-48e7-b6d0-baf392b8d63c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T041722Z:ca89d964-58f7-46d5-b8c0-fae34d86344a", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "d6628fd1-f261-4da7-80f5-11c91680323f", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "7eb1cb1a-3c71-4b37-98f5-78a35cdcd35c", + "x-ms-routing-request-id": "WESTUS2:20221026T062413Z:d6628fd1-f261-4da7-80f5-11c91680323f", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", - "name": "2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f", + "name": "c28758cf-b948-4c7a-bfef-7e1907b8fd6f", "status": "InProgress", "startTime": null, "endTime": null, @@ -888,38 +834,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f94e83b531145e44a2087ec962f9ae9f-8f40c09b96c0e648-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6565d22d50c4624d8efa157f0fa98d1e", + "traceparent": "00-2fa198442079b916912957a97bd5fbe0-3813cb230aeb5b40-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e549a522c94885a3e80c969e0cac8a59", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "6565d22d50c4624d8efa157f0fa98d1e", + "client-request-id": "e549a522c94885a3e80c969e0cac8a59", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:17:53 GMT", + "Date": "Wed, 26 Oct 2022 06:24:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3c9089f6-8ec6-43a3-be66-d73e7bb5c564", - "x-ms-ratelimit-remaining-subscription-reads": "11894", - "x-ms-request-id": "59010a0e-3d82-49c6-ab58-e3ee9dbf0db5", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T041754Z:3c9089f6-8ec6-43a3-be66-d73e7bb5c564", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "4a9ddc9d-4d1e-4d05-aa3e-a384c7b34b67", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "37ecb86a-1446-48fb-a393-cefdaa7fe08a", + "x-ms-routing-request-id": "WESTUS2:20221026T062445Z:4a9ddc9d-4d1e-4d05-aa3e-a384c7b34b67", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", - "name": "2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f", + "name": "c28758cf-b948-4c7a-bfef-7e1907b8fd6f", "status": "InProgress", "startTime": null, "endTime": null, @@ -929,38 +875,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f94e83b531145e44a2087ec962f9ae9f-f6d49d10f2901b45-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c12bab95e3e041a8fd4c6b334a354af5", + "traceparent": "00-2fa198442079b916912957a97bd5fbe0-ff19f311f0d9aec3-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "eb34f082c39d8e922d994e5b03d347cd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "c12bab95e3e041a8fd4c6b334a354af5", + "client-request-id": "eb34f082c39d8e922d994e5b03d347cd", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:18:26 GMT", + "Date": "Wed, 26 Oct 2022 06:25:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "68c893bd-4bda-40e1-a2de-ab1b6edeb601", - "x-ms-ratelimit-remaining-subscription-reads": "11893", - "x-ms-request-id": "f96944cd-255d-4796-9d53-b677cff6fcb7", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T041826Z:68c893bd-4bda-40e1-a2de-ab1b6edeb601", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "18a7a895-b31c-40c7-96cc-a5ec089c1e13", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "9fbe7fef-6128-4bd9-9e73-eb01bbc2d006", + "x-ms-routing-request-id": "WESTUS2:20221026T062517Z:18a7a895-b31c-40c7-96cc-a5ec089c1e13", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", - "name": "2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f", + "name": "c28758cf-b948-4c7a-bfef-7e1907b8fd6f", "status": "InProgress", "startTime": null, "endTime": null, @@ -970,38 +916,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f94e83b531145e44a2087ec962f9ae9f-7cea49254f16824b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4e03be262cc8e2ff5e4cb5276ba784a3", + "traceparent": "00-2fa198442079b916912957a97bd5fbe0-a74c384ed6f6d53f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "567c967e2efc259d2309042a613c4849", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "4e03be262cc8e2ff5e4cb5276ba784a3", + "client-request-id": "567c967e2efc259d2309042a613c4849", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:18:58 GMT", + "Date": "Wed, 26 Oct 2022 06:25:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7bf5ff89-26ce-4279-be74-d9bc13132815", - "x-ms-ratelimit-remaining-subscription-reads": "11892", - "x-ms-request-id": "ba7978d1-2f9c-46f0-82d2-ddbdae1b7b6e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T041859Z:7bf5ff89-26ce-4279-be74-d9bc13132815", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "f50d0fde-0d7a-41c2-b819-f475d0e89476", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "9336da82-b19c-4536-be93-fd382eafabd5", + "x-ms-routing-request-id": "WESTUS2:20221026T062549Z:f50d0fde-0d7a-41c2-b819-f475d0e89476", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", - "name": "2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f", + "name": "c28758cf-b948-4c7a-bfef-7e1907b8fd6f", "status": "InProgress", "startTime": null, "endTime": null, @@ -1011,38 +957,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f94e83b531145e44a2087ec962f9ae9f-629ca33e6bedc945-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5fa885dc9fcd499d2a236777e41a1859", + "traceparent": "00-2fa198442079b916912957a97bd5fbe0-f12cdf9d751a2bcc-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3e7e0284f5845e1f13bab8ae7a478215", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "5fa885dc9fcd499d2a236777e41a1859", + "client-request-id": "3e7e0284f5845e1f13bab8ae7a478215", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:19:31 GMT", + "Date": "Wed, 26 Oct 2022 06:26:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "773449ca-b97a-411b-816f-c00d14c726a6", - "x-ms-ratelimit-remaining-subscription-reads": "11891", - "x-ms-request-id": "0f62a450-1d5f-47bc-8ff0-bb3bbe547683", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T041931Z:773449ca-b97a-411b-816f-c00d14c726a6", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "463e5f4d-cc2c-41e0-9604-a66ba2513206", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "8256d330-83f6-4a0b-ac16-1b23bd0e6b55", + "x-ms-routing-request-id": "WESTUS2:20221026T062621Z:463e5f4d-cc2c-41e0-9604-a66ba2513206", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", - "name": "2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f", + "name": "c28758cf-b948-4c7a-bfef-7e1907b8fd6f", "status": "InProgress", "startTime": null, "endTime": null, @@ -1052,38 +998,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f94e83b531145e44a2087ec962f9ae9f-9524466b9a50e74a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "51591fb03ea56856ab4863932e80d555", + "traceparent": "00-2fa198442079b916912957a97bd5fbe0-cea7ec3f35e055e2-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7620c9c43430545c520ec793bf672df0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "51591fb03ea56856ab4863932e80d555", + "client-request-id": "7620c9c43430545c520ec793bf672df0", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:20:03 GMT", + "Date": "Wed, 26 Oct 2022 06:26:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f5acf906-f50c-49ae-b717-4ea34317b11f", - "x-ms-ratelimit-remaining-subscription-reads": "11893", - "x-ms-request-id": "d05d7262-523c-4335-a5d9-d4fbafe70e30", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T042003Z:f5acf906-f50c-49ae-b717-4ea34317b11f", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "3713b1ef-750a-4886-aafc-def90ac9c91a", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "6fd66541-2ad1-40dd-b605-d18294d3abf6", + "x-ms-routing-request-id": "WESTUS2:20221026T062653Z:3713b1ef-750a-4886-aafc-def90ac9c91a", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", - "name": "2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f", + "name": "c28758cf-b948-4c7a-bfef-7e1907b8fd6f", "status": "InProgress", "startTime": null, "endTime": null, @@ -1093,38 +1039,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f94e83b531145e44a2087ec962f9ae9f-6498502c1402864f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c456c8c7ea8d862720b924a4c587fe44", + "traceparent": "00-2fa198442079b916912957a97bd5fbe0-ff099c71751640fd-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "01d7045108548848761d434275efaadb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "c456c8c7ea8d862720b924a4c587fe44", + "client-request-id": "01d7045108548848761d434275efaadb", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:20:35 GMT", + "Date": "Wed, 26 Oct 2022 06:27:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c4ca40b3-0d58-48f9-aeb1-604081d6ab6a", - "x-ms-ratelimit-remaining-subscription-reads": "11892", - "x-ms-request-id": "8dd5eb8b-6f6d-4b58-a202-591825e25f16", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T042036Z:c4ca40b3-0d58-48f9-aeb1-604081d6ab6a", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "e9960ea2-9d93-4c15-97a3-d7bd65ee98a6", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "b13f18f8-3fea-4bb7-9889-4497d48ae972", + "x-ms-routing-request-id": "WESTUS2:20221026T062725Z:e9960ea2-9d93-4c15-97a3-d7bd65ee98a6", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", - "name": "2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f", + "name": "c28758cf-b948-4c7a-bfef-7e1907b8fd6f", "status": "InProgress", "startTime": null, "endTime": null, @@ -1134,38 +1080,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f94e83b531145e44a2087ec962f9ae9f-24cf61e92f4a1d46-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4b775c34334e9efd2f3fb3843c0a1ba9", + "traceparent": "00-2fa198442079b916912957a97bd5fbe0-1070cefa27862100-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "9865ef87d21c5019a52aec752e8c9fab", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "4b775c34334e9efd2f3fb3843c0a1ba9", + "client-request-id": "9865ef87d21c5019a52aec752e8c9fab", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:21:07 GMT", + "Date": "Wed, 26 Oct 2022 06:27:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1c761614-c388-4b85-9669-cfcaedf0b6cf", - "x-ms-ratelimit-remaining-subscription-reads": "11891", - "x-ms-request-id": "4b12b04b-6781-4814-988e-bdab9136c2e2", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T042108Z:1c761614-c388-4b85-9669-cfcaedf0b6cf", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "035ef260-1da1-43ae-866f-2400a50e0fed", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "a043a8bd-1dd9-49bd-9525-4cb1f27f5eef", + "x-ms-routing-request-id": "WESTUS2:20221026T062757Z:035ef260-1da1-43ae-866f-2400a50e0fed", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", - "name": "2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f", + "name": "c28758cf-b948-4c7a-bfef-7e1907b8fd6f", "status": "InProgress", "startTime": null, "endTime": null, @@ -1175,38 +1121,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f94e83b531145e44a2087ec962f9ae9f-032934f456246a44-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1baf124e53c3c5cbf8d330eb19b1a323", + "traceparent": "00-2fa198442079b916912957a97bd5fbe0-8b075387afb25233-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "765cc78d8070bcc08097ff13f11ade63", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "1baf124e53c3c5cbf8d330eb19b1a323", + "client-request-id": "765cc78d8070bcc08097ff13f11ade63", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:21:40 GMT", + "Date": "Wed, 26 Oct 2022 06:28:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "912aaf88-c509-4a2a-8c94-fef5067fb80d", - "x-ms-ratelimit-remaining-subscription-reads": "11890", - "x-ms-request-id": "9186cd38-3e02-4439-b6e2-8b05c628ee81", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T042140Z:912aaf88-c509-4a2a-8c94-fef5067fb80d", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "124a1198-2f2c-4162-bba0-fafa262fcaac", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "2526e787-bf41-49a3-aa0b-147d2f0ba41f", + "x-ms-routing-request-id": "WESTUS2:20221026T062829Z:124a1198-2f2c-4162-bba0-fafa262fcaac", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", - "name": "2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f", + "name": "c28758cf-b948-4c7a-bfef-7e1907b8fd6f", "status": "InProgress", "startTime": null, "endTime": null, @@ -1216,38 +1162,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f94e83b531145e44a2087ec962f9ae9f-981dd0e790648847-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d15e1f4a89099407cbb8954e37a24a16", + "traceparent": "00-2fa198442079b916912957a97bd5fbe0-f616da7298ea232f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "cf0beb6494017fd4ea865c2a1cd35aea", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "d15e1f4a89099407cbb8954e37a24a16", + "client-request-id": "cf0beb6494017fd4ea865c2a1cd35aea", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:22:12 GMT", + "Date": "Wed, 26 Oct 2022 06:29:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bebff650-b6ac-43b7-8943-a2e425cdd5a6", - "x-ms-ratelimit-remaining-subscription-reads": "11889", - "x-ms-request-id": "74481ca7-c442-4824-b44d-3ad7e3fb5fd3", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T042213Z:bebff650-b6ac-43b7-8943-a2e425cdd5a6", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "cfba626d-ecfa-4a53-a810-c30606f7e1cf", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "60553d31-ce3c-400b-96c9-c6bb987e8af8", + "x-ms-routing-request-id": "WESTUS2:20221026T062902Z:cfba626d-ecfa-4a53-a810-c30606f7e1cf", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", - "name": "2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f", + "name": "c28758cf-b948-4c7a-bfef-7e1907b8fd6f", "status": "InProgress", "startTime": null, "endTime": null, @@ -1257,38 +1203,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f94e83b531145e44a2087ec962f9ae9f-eaa5474b2e5f9d43-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b2567b9ee2d8e18091b1537a0211847d", + "traceparent": "00-2fa198442079b916912957a97bd5fbe0-ef2161a32a4b9939-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "aeb4977d3492076b2ea91884d2065e8b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "b2567b9ee2d8e18091b1537a0211847d", + "client-request-id": "aeb4977d3492076b2ea91884d2065e8b", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:22:45 GMT", + "Date": "Wed, 26 Oct 2022 06:29:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f980ae30-2932-4898-abbf-e91a7db293de", - "x-ms-ratelimit-remaining-subscription-reads": "11888", - "x-ms-request-id": "5b41e3b9-cb40-4023-91b8-44a760f1aeba", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T042245Z:f980ae30-2932-4898-abbf-e91a7db293de", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "a11fa7f9-755c-46f0-8207-6bca290c86ac", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "eb5cff1d-c846-4070-af6d-406965fb8831", + "x-ms-routing-request-id": "WESTUS2:20221026T062934Z:a11fa7f9-755c-46f0-8207-6bca290c86ac", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", - "name": "2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f", + "name": "c28758cf-b948-4c7a-bfef-7e1907b8fd6f", "status": "InProgress", "startTime": null, "endTime": null, @@ -1298,38 +1244,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f94e83b531145e44a2087ec962f9ae9f-f44b89a8cfa3a440-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1c3a8f9c49abc59f0a1b500bbe7d8d55", + "traceparent": "00-2fa198442079b916912957a97bd5fbe0-5c9e670c6c5b101e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4211884bcf80f9aaf2dc8be924959fac", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "1c3a8f9c49abc59f0a1b500bbe7d8d55", + "client-request-id": "4211884bcf80f9aaf2dc8be924959fac", "Content-Length": "361", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:23:17 GMT", + "Date": "Wed, 26 Oct 2022 06:30:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "08a844f5-2aa4-4b89-8b37-2af717e34bec", - "x-ms-ratelimit-remaining-subscription-reads": "11887", - "x-ms-request-id": "c258189d-b6fc-4083-b50d-89f1d33b0fda", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T042318Z:08a844f5-2aa4-4b89-8b37-2af717e34bec", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "e13d0a25-8c92-4275-b831-a234b146a75b", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "9323f380-b308-4d2b-9ad3-a410efafed8e", + "x-ms-routing-request-id": "WESTUS2:20221026T063006Z:e13d0a25-8c92-4275-b831-a234b146a75b", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/North Central US/asyncOperations/2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", - "name": "2b79fe6a-fdaf-40f8-9dbb-021eba94eb06", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/c28758cf-b948-4c7a-bfef-7e1907b8fd6f", + "name": "c28758cf-b948-4c7a-bfef-7e1907b8fd6f", "status": "Succeeded", "startTime": null, "endTime": null, @@ -1339,43 +1285,43 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/redis/RedisGeo1116?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4921/providers/Microsoft.Cache/redis/RedisGeo16773?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f94e83b531145e44a2087ec962f9ae9f-40a339c284182041-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9e4c1988f05b674b9e7d4058358c91b9", + "traceparent": "00-2fa198442079b916912957a97bd5fbe0-c48a955470266c65-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5995153d2f652fd08004a1577b4fade4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "9e4c1988f05b674b9e7d4058358c91b9", + "client-request-id": "5995153d2f652fd08004a1577b4fade4", "Content-Length": "770", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:23:18 GMT", + "Date": "Wed, 26 Oct 2022 06:30:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a04da6de-ac21-4857-98d3-53d37d2731be", - "x-ms-ratelimit-remaining-subscription-reads": "11886", - "x-ms-request-id": "c99543a9-7b46-4a37-a32b-ef762f9e1f89", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T042319Z:a04da6de-ac21-4857-98d3-53d37d2731be", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "24e8333e-f09d-4d56-84a2-5ab1c171ee26", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "3cd83487-a496-4821-8499-4f1d32e785bd", + "x-ms-routing-request-id": "WESTUS2:20221026T063006Z:24e8333e-f09d-4d56-84a2-5ab1c171ee26", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo1116", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4921/providers/Microsoft.Cache/Redis/RedisGeo16773", "location": "North Central US", - "name": "RedisGeo1116", + "name": "RedisGeo16773", "type": "Microsoft.Cache/Redis", "tags": {}, "properties": { "provisioningState": "Succeeded", - "redisVersion": "4.0.14", + "redisVersion": "6.0", "sku": { "name": "Premium", "family": "P", @@ -1402,7 +1348,7 @@ "maxmemory-delta": "642" }, "accessKeys": null, - "hostName": "RedisGeo1116.redis.cache.windows.net", + "hostName": "RedisGeo16773.redis.cache.windows.net", "port": 6379, "sslPort": 6380, "linkedServers": [] @@ -1410,16 +1356,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/redis/RedisGeo27397?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4921/providers/Microsoft.Cache/redis/RedisGeo27810?api-version=2022-06-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "95", "Content-Type": "application/json", - "traceparent": "00-c16d3ce93d89024d9ffd462cd59f2766-35b766f914915240-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a7b117332d68556bdb90a8bc92742313", + "traceparent": "00-8dc08f776307eef6a0a409c765cdcfab-62b5a690c31fe53b-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "93dfd12717c1ae69ecbbbbb5a881e299", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -1434,33 +1380,33 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "a7b117332d68556bdb90a8bc92742313", - "Content-Length": "823", + "client-request-id": "93dfd12717c1ae69ecbbbbb5a881e299", + "Content-Length": "820", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:23:23 GMT", + "Date": "Wed, 26 Oct 2022 06:30:09 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/redis/RedisGeo27397?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4921/providers/Microsoft.Cache/redis/RedisGeo27810?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e4cea4c6-269c-4ed6-862d-b7d53ddbb6ac", - "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-request-id": "1999de4b-f746-41de-aa26-9225869681d4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T042324Z:e4cea4c6-269c-4ed6-862d-b7d53ddbb6ac", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "5996e3d1-2adb-4ea4-a8e8-3c1784a3728a", + "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-request-id": "50f01203-2cab-4f7a-b429-b83a789dd45c", + "x-ms-routing-request-id": "WESTUS2:20221026T063009Z:5996e3d1-2adb-4ea4-a8e8-3c1784a3728a", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo27397", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4921/providers/Microsoft.Cache/Redis/RedisGeo27810", "location": "South Central US", - "name": "RedisGeo27397", + "name": "RedisGeo27810", "type": "Microsoft.Cache/Redis", "tags": {}, "properties": { "provisioningState": "Creating", - "redisVersion": "4.0.14", + "redisVersion": "6.0", "sku": { "name": "Premium", "family": "P", @@ -1490,7 +1436,7 @@ "primaryKey": "Sanitized", "secondaryKey": "Sanitized" }, - "hostName": "RedisGeo27397.redis.cache.windows.net", + "hostName": "RedisGeo27810.redis.cache.windows.net", "port": 6379, "sslPort": 6380, "linkedServers": [] @@ -1498,79 +1444,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-c16d3ce93d89024d9ffd462cd59f2766-b5ed8c5f895d8c4d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a6d8968ae6cb5bedaef7c2ca478fd52a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", - "Cache-Control": "no-cache", - "client-request-id": "a6d8968ae6cb5bedaef7c2ca478fd52a", - "Content-Length": "362", - "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:23:24 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c35a4abd-bfe2-4e59-836d-5d441fa8442f", - "x-ms-ratelimit-remaining-subscription-reads": "11885", - "x-ms-request-id": "6e16373c-3ace-4e79-aae6-988acb898f9e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T042324Z:c35a4abd-bfe2-4e59-836d-5d441fa8442f", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4", - "name": "1999de4b-f746-41de-aa26-9225869681d4", - "status": "InProgress", - "startTime": null, - "endTime": null, - "percentComplete": null, - "properties": null, - "error": null - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c16d3ce93d89024d9ffd462cd59f2766-d3af17d3bb5f354f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "37342d5aa89a4cf5f5066395af3c4d94", + "traceparent": "00-8dc08f776307eef6a0a409c765cdcfab-4aaa65bfad3543c6-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "53c1a72f0bb626ebabe76daa731b87fe", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "37342d5aa89a4cf5f5066395af3c4d94", + "client-request-id": "53c1a72f0bb626ebabe76daa731b87fe", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:23:25 GMT", + "Date": "Wed, 26 Oct 2022 06:30:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "61e643a9-7cc9-43e5-8d41-39ac92a1ded0", - "x-ms-ratelimit-remaining-subscription-reads": "11884", - "x-ms-request-id": "45a5da1b-66d8-4153-b821-aa7a1e1e06d1", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T042326Z:61e643a9-7cc9-43e5-8d41-39ac92a1ded0", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "8b15bbd0-d1e2-4401-b1a8-d87e925432b7", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "e5c8819a-59e6-4451-97d3-76c39a6bf24f", + "x-ms-routing-request-id": "WESTUS2:20221026T063009Z:8b15bbd0-d1e2-4401-b1a8-d87e925432b7", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4", - "name": "1999de4b-f746-41de-aa26-9225869681d4", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c", + "name": "50f01203-2cab-4f7a-b429-b83a789dd45c", "status": "InProgress", "startTime": null, "endTime": null, @@ -1580,38 +1485,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c16d3ce93d89024d9ffd462cd59f2766-02c85a4c6e275644-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "fb322a017c9c3d4810973acd245863b4", + "traceparent": "00-8dc08f776307eef6a0a409c765cdcfab-fc2524d8e0c89733-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0f4d0722f0092273abc3dce055ee7f9a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "fb322a017c9c3d4810973acd245863b4", + "client-request-id": "0f4d0722f0092273abc3dce055ee7f9a", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:23:26 GMT", + "Date": "Wed, 26 Oct 2022 06:30:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a89a8f1b-f4a3-45b8-aec8-bf8909ff58a0", - "x-ms-ratelimit-remaining-subscription-reads": "11883", - "x-ms-request-id": "e05f38df-ab69-4e0d-8037-65b446cc27c9", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T042327Z:a89a8f1b-f4a3-45b8-aec8-bf8909ff58a0", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "0e09c544-1d41-48a3-8040-2e9df2ac9c3d", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "753dd37e-04d8-4006-a3fe-7cc8e0252b9a", + "x-ms-routing-request-id": "WESTUS2:20221026T063010Z:0e09c544-1d41-48a3-8040-2e9df2ac9c3d", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4", - "name": "1999de4b-f746-41de-aa26-9225869681d4", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c", + "name": "50f01203-2cab-4f7a-b429-b83a789dd45c", "status": "InProgress", "startTime": null, "endTime": null, @@ -1621,38 +1526,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c16d3ce93d89024d9ffd462cd59f2766-ec2ce2ad87a8374c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "dad453fd5712e2e3a18bb1c58258ab72", + "traceparent": "00-8dc08f776307eef6a0a409c765cdcfab-3feb4f41e5f89c95-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0185193c8fc0fee280201089977aa89c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "dad453fd5712e2e3a18bb1c58258ab72", + "client-request-id": "0185193c8fc0fee280201089977aa89c", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:23:27 GMT", + "Date": "Wed, 26 Oct 2022 06:30:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "28ee85fe-13c0-4a2b-9eb9-d48965e6be29", - "x-ms-ratelimit-remaining-subscription-reads": "11882", - "x-ms-request-id": "96c361e2-4184-4493-9481-75e4b761416e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T042328Z:28ee85fe-13c0-4a2b-9eb9-d48965e6be29", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "3d287b78-adac-48a4-a9eb-7cd7a441bd8b", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "d0d28f5f-ceac-43bf-9d1f-315913435daf", + "x-ms-routing-request-id": "WESTUS2:20221026T063011Z:3d287b78-adac-48a4-a9eb-7cd7a441bd8b", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4", - "name": "1999de4b-f746-41de-aa26-9225869681d4", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c", + "name": "50f01203-2cab-4f7a-b429-b83a789dd45c", "status": "InProgress", "startTime": null, "endTime": null, @@ -1662,38 +1567,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c16d3ce93d89024d9ffd462cd59f2766-958d94f5abfdfe43-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1dc82da9d95ddd8ee5f626036d27289d", + "traceparent": "00-8dc08f776307eef6a0a409c765cdcfab-ed2a56c0eb9b2f11-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2659c3596e053f99339ea7f32f0bd1bd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "1dc82da9d95ddd8ee5f626036d27289d", + "client-request-id": "2659c3596e053f99339ea7f32f0bd1bd", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:23:30 GMT", + "Date": "Wed, 26 Oct 2022 06:30:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "01789c5b-4544-4f94-897d-c9189278295f", - "x-ms-ratelimit-remaining-subscription-reads": "11881", - "x-ms-request-id": "473dd0c7-0f45-48a7-91e9-53d9613e48e3", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T042331Z:01789c5b-4544-4f94-897d-c9189278295f", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "feeb40cb-7f2b-4cb3-9b0b-31c9c1ef5049", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "4439a02b-ae4e-4635-8fff-04c97cae8032", + "x-ms-routing-request-id": "WESTUS2:20221026T063012Z:feeb40cb-7f2b-4cb3-9b0b-31c9c1ef5049", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4", - "name": "1999de4b-f746-41de-aa26-9225869681d4", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c", + "name": "50f01203-2cab-4f7a-b429-b83a789dd45c", "status": "InProgress", "startTime": null, "endTime": null, @@ -1703,38 +1608,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c16d3ce93d89024d9ffd462cd59f2766-084055f2930e1a48-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5c97aea27268a982474f5a10cb83bbb8", + "traceparent": "00-8dc08f776307eef6a0a409c765cdcfab-cf39c62238f60d0a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5a6dd2678695923e244f8ee9dfe98b31", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "5c97aea27268a982474f5a10cb83bbb8", + "client-request-id": "5a6dd2678695923e244f8ee9dfe98b31", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:23:34 GMT", + "Date": "Wed, 26 Oct 2022 06:30:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c7c9f13f-55e5-4a80-b1ab-8995544b1fa6", - "x-ms-ratelimit-remaining-subscription-reads": "11880", - "x-ms-request-id": "d9823bed-44b5-4f55-b761-12b893ff271d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T042335Z:c7c9f13f-55e5-4a80-b1ab-8995544b1fa6", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "1858de19-8691-4826-815a-c578b1d8ec1c", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "09af3a54-40f3-48db-ac90-ad6c6ac634db", + "x-ms-routing-request-id": "WESTUS2:20221026T063014Z:1858de19-8691-4826-815a-c578b1d8ec1c", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4", - "name": "1999de4b-f746-41de-aa26-9225869681d4", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c", + "name": "50f01203-2cab-4f7a-b429-b83a789dd45c", "status": "InProgress", "startTime": null, "endTime": null, @@ -1744,38 +1649,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c16d3ce93d89024d9ffd462cd59f2766-4c1e73a0b3e55447-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f623c8eb468f2357c5f6f51b31e07479", + "traceparent": "00-8dc08f776307eef6a0a409c765cdcfab-3b1936c24860dd05-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "91863f1b5894ce957f46cd21e7efce75", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "f623c8eb468f2357c5f6f51b31e07479", + "client-request-id": "91863f1b5894ce957f46cd21e7efce75", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:23:43 GMT", + "Date": "Wed, 26 Oct 2022 06:30:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "76a6d1e9-d090-4029-a28a-30bcb5abef37", - "x-ms-ratelimit-remaining-subscription-reads": "11879", - "x-ms-request-id": "d50b204a-4589-4ec6-9641-cb15485cabfc", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T042343Z:76a6d1e9-d090-4029-a28a-30bcb5abef37", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "e0f2c85b-4378-41e1-a106-8a5051c9a1c2", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "44a78177-42e5-4e4c-ad48-9475b1522803", + "x-ms-routing-request-id": "WESTUS2:20221026T063018Z:e0f2c85b-4378-41e1-a106-8a5051c9a1c2", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4", - "name": "1999de4b-f746-41de-aa26-9225869681d4", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c", + "name": "50f01203-2cab-4f7a-b429-b83a789dd45c", "status": "InProgress", "startTime": null, "endTime": null, @@ -1785,38 +1690,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c16d3ce93d89024d9ffd462cd59f2766-d365ed600c37fd41-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d32214634fc03609ab1fd50d7f7d1262", + "traceparent": "00-8dc08f776307eef6a0a409c765cdcfab-18334d2c1feddb42-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c522534f4d0cd30685c602b6e0b05f49", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "d32214634fc03609ab1fd50d7f7d1262", + "client-request-id": "c522534f4d0cd30685c602b6e0b05f49", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:23:59 GMT", + "Date": "Wed, 26 Oct 2022 06:30:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d70052ac-174b-4933-92a7-257c3cff7168", - "x-ms-ratelimit-remaining-subscription-reads": "11878", - "x-ms-request-id": "c6d60fad-855b-4a3c-9f0a-8cbe5f3cb516", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T042400Z:d70052ac-174b-4933-92a7-257c3cff7168", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "5a633336-b0a5-403e-9090-4cce8359df8c", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "c582d938-712f-4f66-9b6e-56b3d19382aa", + "x-ms-routing-request-id": "WESTUS2:20221026T063027Z:5a633336-b0a5-403e-9090-4cce8359df8c", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4", - "name": "1999de4b-f746-41de-aa26-9225869681d4", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c", + "name": "50f01203-2cab-4f7a-b429-b83a789dd45c", "status": "InProgress", "startTime": null, "endTime": null, @@ -1826,38 +1731,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c16d3ce93d89024d9ffd462cd59f2766-df30ad62b5b5e44a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a5176d3b31045c0d577396717c667867", + "traceparent": "00-8dc08f776307eef6a0a409c765cdcfab-d113e16d0cbed63c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "efd776133f850e293d9fda4fb81caa34", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "a5176d3b31045c0d577396717c667867", + "client-request-id": "efd776133f850e293d9fda4fb81caa34", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:24:31 GMT", + "Date": "Wed, 26 Oct 2022 06:30:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "66481362-6b64-4c6b-9e14-9af929a593c2", - "x-ms-ratelimit-remaining-subscription-reads": "11877", - "x-ms-request-id": "9203fa17-e949-4970-a674-0fc89ee82487", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T042432Z:66481362-6b64-4c6b-9e14-9af929a593c2", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "0b06cb7c-f6c0-46db-9f05-92bbc6f45e40", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "77c3a821-9260-46f2-8fa5-0ec2c1241e7c", + "x-ms-routing-request-id": "WESTUS2:20221026T063043Z:0b06cb7c-f6c0-46db-9f05-92bbc6f45e40", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4", - "name": "1999de4b-f746-41de-aa26-9225869681d4", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c", + "name": "50f01203-2cab-4f7a-b429-b83a789dd45c", "status": "InProgress", "startTime": null, "endTime": null, @@ -1867,38 +1772,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c16d3ce93d89024d9ffd462cd59f2766-362172b193708d46-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b7ade0dbe7609cf8beec4b70704aa447", + "traceparent": "00-8dc08f776307eef6a0a409c765cdcfab-2f144dc9ae20326e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "8c9a1980c5c7cd2439b20bcd56dfeecf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "b7ade0dbe7609cf8beec4b70704aa447", + "client-request-id": "8c9a1980c5c7cd2439b20bcd56dfeecf", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:25:04 GMT", + "Date": "Wed, 26 Oct 2022 06:31:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ab4612c5-fef5-4f9b-8792-026e5b87afca", - "x-ms-ratelimit-remaining-subscription-reads": "11876", - "x-ms-request-id": "a000d6c5-d56d-4e63-a0da-6083cb3cbfa5", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T042504Z:ab4612c5-fef5-4f9b-8792-026e5b87afca", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "9b38d740-6447-4b09-a46f-1c2fe7023078", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "6064cf3a-2a17-41d8-a574-69dc0b7d5768", + "x-ms-routing-request-id": "WESTUS2:20221026T063115Z:9b38d740-6447-4b09-a46f-1c2fe7023078", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4", - "name": "1999de4b-f746-41de-aa26-9225869681d4", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c", + "name": "50f01203-2cab-4f7a-b429-b83a789dd45c", "status": "InProgress", "startTime": null, "endTime": null, @@ -1908,38 +1813,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c16d3ce93d89024d9ffd462cd59f2766-81f3a3cbe3948346-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c3e093e4cfc9317506c67c4cb897ba45", + "traceparent": "00-8dc08f776307eef6a0a409c765cdcfab-131121f96fcde4b9-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "710d84e6de180ff02a13876d72b71b69", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "c3e093e4cfc9317506c67c4cb897ba45", + "client-request-id": "710d84e6de180ff02a13876d72b71b69", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:25:36 GMT", + "Date": "Wed, 26 Oct 2022 06:31:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5f14e0ca-d412-4edc-8e4c-15d111f9eb5e", - "x-ms-ratelimit-remaining-subscription-reads": "11875", - "x-ms-request-id": "f7f44d71-2e98-4951-87e3-b588b5117a58", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T042537Z:5f14e0ca-d412-4edc-8e4c-15d111f9eb5e", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "2f4a4cd0-4487-4dd3-b765-0ba3ab83c0da", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "ba335f06-55b8-4168-9bb9-88cd8c91b55c", + "x-ms-routing-request-id": "WESTUS2:20221026T063147Z:2f4a4cd0-4487-4dd3-b765-0ba3ab83c0da", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4", - "name": "1999de4b-f746-41de-aa26-9225869681d4", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c", + "name": "50f01203-2cab-4f7a-b429-b83a789dd45c", "status": "InProgress", "startTime": null, "endTime": null, @@ -1949,38 +1854,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c16d3ce93d89024d9ffd462cd59f2766-184116f86d2c1741-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9f316ea65acf5401757ae617e69deb0c", + "traceparent": "00-8dc08f776307eef6a0a409c765cdcfab-784c8d0145663c68-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c635cd1cd3164d815109b6d2345bb75e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "9f316ea65acf5401757ae617e69deb0c", + "client-request-id": "c635cd1cd3164d815109b6d2345bb75e", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:26:09 GMT", + "Date": "Wed, 26 Oct 2022 06:32:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b1f434db-7d44-40d4-9676-cbf42ce2a6e7", - "x-ms-ratelimit-remaining-subscription-reads": "11874", - "x-ms-request-id": "86fdd74b-d4ee-4cb1-8c9e-aa10c8ba44d3", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T042609Z:b1f434db-7d44-40d4-9676-cbf42ce2a6e7", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "20b672a5-0d87-4b33-b3e3-94689a31bfd7", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "0f9f6f87-4903-4020-9c17-0d59568511a4", + "x-ms-routing-request-id": "WESTUS2:20221026T063219Z:20b672a5-0d87-4b33-b3e3-94689a31bfd7", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4", - "name": "1999de4b-f746-41de-aa26-9225869681d4", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c", + "name": "50f01203-2cab-4f7a-b429-b83a789dd45c", "status": "InProgress", "startTime": null, "endTime": null, @@ -1990,38 +1895,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c16d3ce93d89024d9ffd462cd59f2766-b6c6371eb998d94a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e88d4ecfb4850c9e6b7cb19a6aabe427", + "traceparent": "00-8dc08f776307eef6a0a409c765cdcfab-076e7949a4484c0c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "34680bb1380ea11c288a62b33eb75b81", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "e88d4ecfb4850c9e6b7cb19a6aabe427", + "client-request-id": "34680bb1380ea11c288a62b33eb75b81", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:26:41 GMT", + "Date": "Wed, 26 Oct 2022 06:32:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aab3e19d-b7b7-437b-a9e0-63013a3ceb78", - "x-ms-ratelimit-remaining-subscription-reads": "11873", - "x-ms-request-id": "f73a1735-4d22-4cc9-b400-9f2a1c0ec39e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T042641Z:aab3e19d-b7b7-437b-a9e0-63013a3ceb78", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "513bd9b7-4dcb-49b5-9c81-9dee09a3fd69", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "714e843b-01b6-4a0d-99e3-6411f7a24242", + "x-ms-routing-request-id": "WESTUS2:20221026T063251Z:513bd9b7-4dcb-49b5-9c81-9dee09a3fd69", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4", - "name": "1999de4b-f746-41de-aa26-9225869681d4", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c", + "name": "50f01203-2cab-4f7a-b429-b83a789dd45c", "status": "InProgress", "startTime": null, "endTime": null, @@ -2031,38 +1936,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c16d3ce93d89024d9ffd462cd59f2766-00ad22e24c75ac4c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "01c9063204188977928c4e4ee85d4a68", + "traceparent": "00-8dc08f776307eef6a0a409c765cdcfab-a00c2610e78abbbe-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "89b1a29727a913b902c0200e271ddace", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "01c9063204188977928c4e4ee85d4a68", + "client-request-id": "89b1a29727a913b902c0200e271ddace", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:27:13 GMT", + "Date": "Wed, 26 Oct 2022 06:33:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "db0b04fa-57dc-4f0e-8802-f01fa8f7cfc9", - "x-ms-ratelimit-remaining-subscription-reads": "11872", - "x-ms-request-id": "e92e27a4-fdf9-4f20-8106-6c01102b16eb", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T042713Z:db0b04fa-57dc-4f0e-8802-f01fa8f7cfc9", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "40d9ba31-c027-4177-a9d8-283b53d1ef11", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "b061934e-694d-4293-837a-b371310d7148", + "x-ms-routing-request-id": "WESTUS2:20221026T063323Z:40d9ba31-c027-4177-a9d8-283b53d1ef11", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4", - "name": "1999de4b-f746-41de-aa26-9225869681d4", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c", + "name": "50f01203-2cab-4f7a-b429-b83a789dd45c", "status": "InProgress", "startTime": null, "endTime": null, @@ -2072,38 +1977,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c16d3ce93d89024d9ffd462cd59f2766-68369eee5cd5a343-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "697c6fdad10af1bfd0253453a967e9c9", + "traceparent": "00-8dc08f776307eef6a0a409c765cdcfab-d4c0b75a89d0eab8-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "67bb295ce64fe35ab0949e8b70ce0f9a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "697c6fdad10af1bfd0253453a967e9c9", + "client-request-id": "67bb295ce64fe35ab0949e8b70ce0f9a", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:27:45 GMT", + "Date": "Wed, 26 Oct 2022 06:33:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a305e20a-f769-41f4-9626-e9c04a02c14a", - "x-ms-ratelimit-remaining-subscription-reads": "11871", - "x-ms-request-id": "4fec35f4-bb81-42a7-8360-966cd78474f2", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T042746Z:a305e20a-f769-41f4-9626-e9c04a02c14a", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "53daa63c-9596-4b4b-a413-5f53df1a5307", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "1a5d3600-4cba-42dc-81e3-05b9c2091d5c", + "x-ms-routing-request-id": "WESTUS2:20221026T063355Z:53daa63c-9596-4b4b-a413-5f53df1a5307", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4", - "name": "1999de4b-f746-41de-aa26-9225869681d4", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c", + "name": "50f01203-2cab-4f7a-b429-b83a789dd45c", "status": "InProgress", "startTime": null, "endTime": null, @@ -2113,38 +2018,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c16d3ce93d89024d9ffd462cd59f2766-7bd3aa1325ae5c4e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e0e5bf96ead4caf4d60456f9664f230d", + "traceparent": "00-8dc08f776307eef6a0a409c765cdcfab-29da26367c5bab33-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "923b35ae2ea98ab45155314e180e790a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "e0e5bf96ead4caf4d60456f9664f230d", + "client-request-id": "923b35ae2ea98ab45155314e180e790a", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:28:18 GMT", + "Date": "Wed, 26 Oct 2022 06:34:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bd3f756d-39d0-4eb2-97af-ce0331f8b2f4", - "x-ms-ratelimit-remaining-subscription-reads": "11870", - "x-ms-request-id": "a4013a39-35bf-4f38-a115-b8bea7e066c2", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T042819Z:bd3f756d-39d0-4eb2-97af-ce0331f8b2f4", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "ed011f6d-ddd5-40a6-a05a-10ea260f5fee", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "d0454911-0fc7-4007-b5bc-9131357938c2", + "x-ms-routing-request-id": "WESTUS2:20221026T063427Z:ed011f6d-ddd5-40a6-a05a-10ea260f5fee", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4", - "name": "1999de4b-f746-41de-aa26-9225869681d4", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c", + "name": "50f01203-2cab-4f7a-b429-b83a789dd45c", "status": "InProgress", "startTime": null, "endTime": null, @@ -2154,38 +2059,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c16d3ce93d89024d9ffd462cd59f2766-e74ef6f42dd19442-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "fac048327a2f611c46d730f2d024df2b", + "traceparent": "00-8dc08f776307eef6a0a409c765cdcfab-2ddc95875fd8c5a1-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "145793b0f3fbb03247ced815892ea233", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "fac048327a2f611c46d730f2d024df2b", + "client-request-id": "145793b0f3fbb03247ced815892ea233", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:28:51 GMT", + "Date": "Wed, 26 Oct 2022 06:34:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2c35aa21-598a-4d4f-a9e1-1ec5e63250a1", - "x-ms-ratelimit-remaining-subscription-reads": "11869", - "x-ms-request-id": "8a24d601-7fd7-405d-b144-a4eec5f66d52", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T042851Z:2c35aa21-598a-4d4f-a9e1-1ec5e63250a1", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "38ab3418-0032-4bde-a68e-9a0e43ba077c", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "56ec3f8a-43ce-4765-965e-3b91172da50e", + "x-ms-routing-request-id": "WESTUS2:20221026T063459Z:38ab3418-0032-4bde-a68e-9a0e43ba077c", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4", - "name": "1999de4b-f746-41de-aa26-9225869681d4", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c", + "name": "50f01203-2cab-4f7a-b429-b83a789dd45c", "status": "InProgress", "startTime": null, "endTime": null, @@ -2195,38 +2100,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c16d3ce93d89024d9ffd462cd59f2766-7719e0ea14439d44-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "29b784a26978ef937bb192067ac58b81", + "traceparent": "00-8dc08f776307eef6a0a409c765cdcfab-a7d57581a747171f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f25f85b048e22e25753116fab40ccaa2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "29b784a26978ef937bb192067ac58b81", + "client-request-id": "f25f85b048e22e25753116fab40ccaa2", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:29:23 GMT", + "Date": "Wed, 26 Oct 2022 06:35:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d75c8b0d-eff5-40e0-8da0-dbd9ad51b40d", - "x-ms-ratelimit-remaining-subscription-reads": "11868", - "x-ms-request-id": "00bdfbad-0e44-413b-8c74-af969990aaba", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T042924Z:d75c8b0d-eff5-40e0-8da0-dbd9ad51b40d", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "2e46faf1-6830-456e-a6a4-a00273d8244d", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "7f9e7664-f59a-4341-a723-4393519bb2c3", + "x-ms-routing-request-id": "WESTUS2:20221026T063531Z:2e46faf1-6830-456e-a6a4-a00273d8244d", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4", - "name": "1999de4b-f746-41de-aa26-9225869681d4", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c", + "name": "50f01203-2cab-4f7a-b429-b83a789dd45c", "status": "InProgress", "startTime": null, "endTime": null, @@ -2236,38 +2141,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c16d3ce93d89024d9ffd462cd59f2766-85b54c8a6a45f84a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "60212602eea61c9aa28399fdb901f9b2", + "traceparent": "00-8dc08f776307eef6a0a409c765cdcfab-f31069f80980158d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "dddb931bfb77bb9e038a4bdb559f0123", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "60212602eea61c9aa28399fdb901f9b2", + "client-request-id": "dddb931bfb77bb9e038a4bdb559f0123", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:29:56 GMT", + "Date": "Wed, 26 Oct 2022 06:36:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "00fecc65-cce3-451e-ab1f-9035a0fed279", - "x-ms-ratelimit-remaining-subscription-reads": "11867", - "x-ms-request-id": "3b485028-c0a7-49ac-9ee0-c1e0a1f169e6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T042956Z:00fecc65-cce3-451e-ab1f-9035a0fed279", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "65444710-3b02-4424-afce-402fb7038ffa", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "c806f7ec-bd65-45a3-9763-16bc57786040", + "x-ms-routing-request-id": "WESTUS2:20221026T063604Z:65444710-3b02-4424-afce-402fb7038ffa", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4", - "name": "1999de4b-f746-41de-aa26-9225869681d4", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c", + "name": "50f01203-2cab-4f7a-b429-b83a789dd45c", "status": "InProgress", "startTime": null, "endTime": null, @@ -2277,38 +2182,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c16d3ce93d89024d9ffd462cd59f2766-a0cd28cfafad2c46-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e2562b24f997c894b5d07f7de716e680", + "traceparent": "00-8dc08f776307eef6a0a409c765cdcfab-c665c0b3ef07cc93-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "929dfeb287ae67286e289fcadd38fb3a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "e2562b24f997c894b5d07f7de716e680", + "client-request-id": "929dfeb287ae67286e289fcadd38fb3a", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:30:27 GMT", + "Date": "Wed, 26 Oct 2022 06:36:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8a18123e-ad86-45d5-8d03-27ec4fff5b19", - "x-ms-ratelimit-remaining-subscription-reads": "11866", - "x-ms-request-id": "c26291dd-0388-4bb6-8666-e5a3c992be6b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T043028Z:8a18123e-ad86-45d5-8d03-27ec4fff5b19", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "68f97973-dda0-481f-a2d6-940c31f619c3", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "dc8695a7-0030-4373-8cc6-27a256c74740", + "x-ms-routing-request-id": "WESTUS2:20221026T063636Z:68f97973-dda0-481f-a2d6-940c31f619c3", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4", - "name": "1999de4b-f746-41de-aa26-9225869681d4", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c", + "name": "50f01203-2cab-4f7a-b429-b83a789dd45c", "status": "InProgress", "startTime": null, "endTime": null, @@ -2318,38 +2223,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c16d3ce93d89024d9ffd462cd59f2766-44e9672cbfebf04e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "aaf0af4c7e03b384ea9b86f4cf96357a", + "traceparent": "00-8dc08f776307eef6a0a409c765cdcfab-febc00eab9636f39-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f5fa3503c453b5bce7a3ef57fd4ad8d5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "aaf0af4c7e03b384ea9b86f4cf96357a", + "client-request-id": "f5fa3503c453b5bce7a3ef57fd4ad8d5", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:31:00 GMT", + "Date": "Wed, 26 Oct 2022 06:37:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3938dbb3-0a83-46bd-b963-b42c41753577", - "x-ms-ratelimit-remaining-subscription-reads": "11865", - "x-ms-request-id": "72c9b98f-9030-468e-a399-e6e418ba2dc7", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T043101Z:3938dbb3-0a83-46bd-b963-b42c41753577", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "fbe32a58-8e33-4a6f-97db-3fc1e419029c", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "aa8109a9-a501-4ac0-8b4a-da6b9bdbc657", + "x-ms-routing-request-id": "WESTUS2:20221026T063708Z:fbe32a58-8e33-4a6f-97db-3fc1e419029c", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4", - "name": "1999de4b-f746-41de-aa26-9225869681d4", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c", + "name": "50f01203-2cab-4f7a-b429-b83a789dd45c", "status": "InProgress", "startTime": null, "endTime": null, @@ -2359,38 +2264,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c16d3ce93d89024d9ffd462cd59f2766-6379f5048678e343-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4fe1e0b7a86e08e99259abd66f1c348b", + "traceparent": "00-8dc08f776307eef6a0a409c765cdcfab-868377ee378a31dd-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b647f22f376e93f46b736f4e5bd3deca", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "4fe1e0b7a86e08e99259abd66f1c348b", + "client-request-id": "b647f22f376e93f46b736f4e5bd3deca", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:31:33 GMT", + "Date": "Wed, 26 Oct 2022 06:37:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "34368b6c-0c4d-49b5-a5f8-79c4446fef51", - "x-ms-ratelimit-remaining-subscription-reads": "11864", - "x-ms-request-id": "2d236709-58c6-4b22-a9eb-585b862554c2", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T043133Z:34368b6c-0c4d-49b5-a5f8-79c4446fef51", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "36023534-2d33-42b9-a8d6-8373338b02da", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "63a1d63a-5981-42d2-a15c-169472f13205", + "x-ms-routing-request-id": "WESTUS2:20221026T063740Z:36023534-2d33-42b9-a8d6-8373338b02da", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4", - "name": "1999de4b-f746-41de-aa26-9225869681d4", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c", + "name": "50f01203-2cab-4f7a-b429-b83a789dd45c", "status": "InProgress", "startTime": null, "endTime": null, @@ -2400,38 +2305,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c16d3ce93d89024d9ffd462cd59f2766-516b01b42ba4cd4f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0ab0199d4f11a5afa6a3f7fc739ff81e", + "traceparent": "00-8dc08f776307eef6a0a409c765cdcfab-2c184381efd309a5-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1fd7108f0ba5edd041e8ab0a97d06a24", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "0ab0199d4f11a5afa6a3f7fc739ff81e", + "client-request-id": "1fd7108f0ba5edd041e8ab0a97d06a24", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:32:05 GMT", + "Date": "Wed, 26 Oct 2022 06:38:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "49da2eac-cc3f-4998-a5ae-8c1ffc06ba1b", - "x-ms-ratelimit-remaining-subscription-reads": "11863", - "x-ms-request-id": "240cfb2e-0dce-4e8d-8856-988bfc769146", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T043205Z:49da2eac-cc3f-4998-a5ae-8c1ffc06ba1b", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "3884e078-9dc9-4a78-8af0-8fdc30de61fc", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "08b027c0-012e-4665-90ec-363ac7160d18", + "x-ms-routing-request-id": "WESTUS2:20221026T063812Z:3884e078-9dc9-4a78-8af0-8fdc30de61fc", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4", - "name": "1999de4b-f746-41de-aa26-9225869681d4", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c", + "name": "50f01203-2cab-4f7a-b429-b83a789dd45c", "status": "InProgress", "startTime": null, "endTime": null, @@ -2441,38 +2346,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c16d3ce93d89024d9ffd462cd59f2766-b1aee7d4ee55054e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "07c5059a9735a312c6e717aad3ad44ce", + "traceparent": "00-8dc08f776307eef6a0a409c765cdcfab-6f80ecc5a32c9d42-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ea9ac94f44f0cccb41668adf556d5913", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "07c5059a9735a312c6e717aad3ad44ce", + "client-request-id": "ea9ac94f44f0cccb41668adf556d5913", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:32:37 GMT", + "Date": "Wed, 26 Oct 2022 06:38:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "caa6818d-0c90-4987-8fb9-6750fe6786ac", - "x-ms-ratelimit-remaining-subscription-reads": "11862", - "x-ms-request-id": "597ebb9b-27e8-4523-9003-12f6664c9aa5", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T043238Z:caa6818d-0c90-4987-8fb9-6750fe6786ac", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "4828cb69-f664-4086-8cf1-23a0f0c94740", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "230eadae-9061-4447-a6ae-d0ac3c73f8c7", + "x-ms-routing-request-id": "WESTUS2:20221026T063844Z:4828cb69-f664-4086-8cf1-23a0f0c94740", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4", - "name": "1999de4b-f746-41de-aa26-9225869681d4", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c", + "name": "50f01203-2cab-4f7a-b429-b83a789dd45c", "status": "InProgress", "startTime": null, "endTime": null, @@ -2482,38 +2387,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c16d3ce93d89024d9ffd462cd59f2766-95a8cf5191b30241-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b657fa672be66868313ba8cbb1ed95f2", + "traceparent": "00-8dc08f776307eef6a0a409c765cdcfab-ca5d97b62c94f0b2-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ecc824c5b9722430225975868ce9fc9b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "b657fa672be66868313ba8cbb1ed95f2", + "client-request-id": "ecc824c5b9722430225975868ce9fc9b", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:33:09 GMT", + "Date": "Wed, 26 Oct 2022 06:39:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b7e92da9-b50e-4831-9f44-73fa6f68f550", - "x-ms-ratelimit-remaining-subscription-reads": "11861", - "x-ms-request-id": "a39181df-923f-4bae-a5e9-b91eef6e3aae", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T043310Z:b7e92da9-b50e-4831-9f44-73fa6f68f550", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "00d453b0-5383-47fd-8ad3-1aa862cbc57b", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "97c0b56c-8146-4a5d-bbf4-bbf06fb78a4d", + "x-ms-routing-request-id": "WESTUS2:20221026T063916Z:00d453b0-5383-47fd-8ad3-1aa862cbc57b", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4", - "name": "1999de4b-f746-41de-aa26-9225869681d4", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c", + "name": "50f01203-2cab-4f7a-b429-b83a789dd45c", "status": "InProgress", "startTime": null, "endTime": null, @@ -2523,38 +2428,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c16d3ce93d89024d9ffd462cd59f2766-face39a6b5699f47-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6a3c8d602d560656070c442a3704d2f9", + "traceparent": "00-8dc08f776307eef6a0a409c765cdcfab-2f4f06ed57ef4869-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "92fe4b08f4384ada440bde3f81f097d3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "6a3c8d602d560656070c442a3704d2f9", + "client-request-id": "92fe4b08f4384ada440bde3f81f097d3", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:33:43 GMT", + "Date": "Wed, 26 Oct 2022 06:39:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "034d07ff-0bde-4752-bf2a-fd05fbcacdaa", - "x-ms-ratelimit-remaining-subscription-reads": "11860", - "x-ms-request-id": "caeb45fd-e159-457e-86ed-06cab7bbaccd", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T043343Z:034d07ff-0bde-4752-bf2a-fd05fbcacdaa", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "62ac569f-8e1a-439a-b085-a700986d5c79", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "d62aac07-d81a-4c7e-a2d9-aaedd6905adf", + "x-ms-routing-request-id": "WESTUS2:20221026T063949Z:62ac569f-8e1a-439a-b085-a700986d5c79", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4", - "name": "1999de4b-f746-41de-aa26-9225869681d4", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c", + "name": "50f01203-2cab-4f7a-b429-b83a789dd45c", "status": "InProgress", "startTime": null, "endTime": null, @@ -2564,38 +2469,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c16d3ce93d89024d9ffd462cd59f2766-3536e55ba9a6b64a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "7894295e41476e389c5dd6f9ee46f2d9", + "traceparent": "00-8dc08f776307eef6a0a409c765cdcfab-191a1be3e9a74600-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7345978e7d0796b19976c896ce453f57", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "7894295e41476e389c5dd6f9ee46f2d9", + "client-request-id": "7345978e7d0796b19976c896ce453f57", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:34:15 GMT", + "Date": "Wed, 26 Oct 2022 06:40:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1ad28387-3609-4bea-9276-5cb5960d10cf", - "x-ms-ratelimit-remaining-subscription-reads": "11859", - "x-ms-request-id": "6bce66dc-001b-4f09-b815-30ec5227c014", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T043415Z:1ad28387-3609-4bea-9276-5cb5960d10cf", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "e9c2d5e8-facb-4b39-8492-94cee8e8429d", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "d6f2ad84-d695-44e5-a769-103ec668017c", + "x-ms-routing-request-id": "WESTUS2:20221026T064021Z:e9c2d5e8-facb-4b39-8492-94cee8e8429d", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4", - "name": "1999de4b-f746-41de-aa26-9225869681d4", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c", + "name": "50f01203-2cab-4f7a-b429-b83a789dd45c", "status": "InProgress", "startTime": null, "endTime": null, @@ -2605,38 +2510,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c16d3ce93d89024d9ffd462cd59f2766-a331c310d99b3248-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "45492551da713a77a451afd9e73e302c", + "traceparent": "00-8dc08f776307eef6a0a409c765cdcfab-820a0ef46c004f18-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0ad7ee69c76ed1db497da867daf0a231", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "45492551da713a77a451afd9e73e302c", + "client-request-id": "0ad7ee69c76ed1db497da867daf0a231", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:34:47 GMT", + "Date": "Wed, 26 Oct 2022 06:40:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2d069b53-d6ac-4305-be55-6537c694de06", - "x-ms-ratelimit-remaining-subscription-reads": "11858", - "x-ms-request-id": "c4ed1abf-09fb-4ba9-8388-4925f97bd828", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T043448Z:2d069b53-d6ac-4305-be55-6537c694de06", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "6c73b07f-6ee3-42da-8989-557fb475b3ff", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "eecea8fb-b939-45cb-ae98-8879c9676304", + "x-ms-routing-request-id": "WESTUS2:20221026T064053Z:6c73b07f-6ee3-42da-8989-557fb475b3ff", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4", - "name": "1999de4b-f746-41de-aa26-9225869681d4", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c", + "name": "50f01203-2cab-4f7a-b429-b83a789dd45c", "status": "InProgress", "startTime": null, "endTime": null, @@ -2646,38 +2551,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c16d3ce93d89024d9ffd462cd59f2766-a3f7697ddac87746-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "876daf691d581faa54cdcdf9575d17c0", + "traceparent": "00-8dc08f776307eef6a0a409c765cdcfab-8c520a62014a56b0-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f4f7a1c188a48a939968f8c22b437bfe", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "876daf691d581faa54cdcdf9575d17c0", + "client-request-id": "f4f7a1c188a48a939968f8c22b437bfe", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:35:20 GMT", + "Date": "Wed, 26 Oct 2022 06:41:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8bb30c03-d2c1-482c-9865-c6ecc85114d6", - "x-ms-ratelimit-remaining-subscription-reads": "11862", - "x-ms-request-id": "cb7dc8be-b53d-4c25-bb43-d34f46b5604e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T043520Z:8bb30c03-d2c1-482c-9865-c6ecc85114d6", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "dd8cbb8d-42d1-414e-9d03-2bcbf66ea905", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "71c9ee33-d4c8-4721-a91c-3b233848d3f3", + "x-ms-routing-request-id": "WESTUS2:20221026T064125Z:dd8cbb8d-42d1-414e-9d03-2bcbf66ea905", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4", - "name": "1999de4b-f746-41de-aa26-9225869681d4", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c", + "name": "50f01203-2cab-4f7a-b429-b83a789dd45c", "status": "InProgress", "startTime": null, "endTime": null, @@ -2687,38 +2592,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c16d3ce93d89024d9ffd462cd59f2766-695096cd108d914c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "12d86b1a8cbb8487b25ad3f6925e875d", + "traceparent": "00-8dc08f776307eef6a0a409c765cdcfab-0aad99db959305e4-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "92d587cb8d19c764bc73298ad54abba8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "12d86b1a8cbb8487b25ad3f6925e875d", + "client-request-id": "92d587cb8d19c764bc73298ad54abba8", "Content-Length": "362", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:35:52 GMT", + "Date": "Wed, 26 Oct 2022 06:41:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2e191918-af2d-401e-be09-eda70647f340", - "x-ms-ratelimit-remaining-subscription-reads": "11861", - "x-ms-request-id": "d8a133ca-2ec8-4cdd-bd43-df3e5640a645", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T043552Z:2e191918-af2d-401e-be09-eda70647f340", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "08fc833b-427d-46c4-a176-54898e6773ad", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "4e42d8ea-fb9a-4f54-bec4-23f7ff76b146", + "x-ms-routing-request-id": "WESTUS2:20221026T064157Z:08fc833b-427d-46c4-a176-54898e6773ad", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4", - "name": "1999de4b-f746-41de-aa26-9225869681d4", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c", + "name": "50f01203-2cab-4f7a-b429-b83a789dd45c", "status": "InProgress", "startTime": null, "endTime": null, @@ -2728,38 +2633,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c16d3ce93d89024d9ffd462cd59f2766-3225b805ac444e4d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3f90a92c6ad933807a2af0a40c7de347", + "traceparent": "00-8dc08f776307eef6a0a409c765cdcfab-4441a8f15ff8ed1e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2dd496d44b4de1b25b4c7006ce18a506", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South%20Central%20US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "3f90a92c6ad933807a2af0a40c7de347", + "client-request-id": "2dd496d44b4de1b25b4c7006ce18a506", "Content-Length": "361", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 04:36:24 GMT", + "Date": "Wed, 26 Oct 2022 06:42:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "07694330-f365-489b-ac22-a08831cca4d5", - "x-ms-ratelimit-remaining-subscription-reads": "11860", - "x-ms-request-id": "86df020c-a0b9-41a4-875b-2419edc80459", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T043625Z:07694330-f365-489b-ac22-a08831cca4d5", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "da1305a6-2ad4-4953-8a8c-b345d149b87c", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "7cd71a21-4aca-4447-9bbb-86a8dc15078c", + "x-ms-routing-request-id": "WESTUS2:20221026T064229Z:da1305a6-2ad4-4953-8a8c-b345d149b87c", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/South Central US/asyncOperations/1999de4b-f746-41de-aa26-9225869681d4", - "name": "1999de4b-f746-41de-aa26-9225869681d4", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/South Central US/asyncOperations/50f01203-2cab-4f7a-b429-b83a789dd45c", + "name": "50f01203-2cab-4f7a-b429-b83a789dd45c", "status": "Succeeded", "startTime": null, "endTime": null, @@ -2769,43 +2674,43 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/redis/RedisGeo27397?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4921/providers/Microsoft.Cache/redis/RedisGeo27810?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c16d3ce93d89024d9ffd462cd59f2766-89776aae253e9e4c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "7bbeee3a1d65dc7028e8d5fd49b48cf6", + "traceparent": "00-8dc08f776307eef6a0a409c765cdcfab-056cd57b015c30da-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "539ba9010f1b34183c3038315e08b54f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "7bbeee3a1d65dc7028e8d5fd49b48cf6", - "Content-Length": "773", + "client-request-id": "539ba9010f1b34183c3038315e08b54f", + "Content-Length": "770", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:36:25 GMT", + "Date": "Wed, 26 Oct 2022 06:42:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3d56f996-8e46-42b0-a23c-687faaf9b529", - "x-ms-ratelimit-remaining-subscription-reads": "11859", - "x-ms-request-id": "357d7592-e614-42b0-a9fc-3014b2bb4699", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T043625Z:3d56f996-8e46-42b0-a23c-687faaf9b529", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "d9497c56-7e9b-4b75-abd4-dbe3969faed1", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "93768e18-72c2-4e9f-adc9-34122b70bdc3", + "x-ms-routing-request-id": "WESTUS2:20221026T064229Z:d9497c56-7e9b-4b75-abd4-dbe3969faed1", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo27397", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4921/providers/Microsoft.Cache/Redis/RedisGeo27810", "location": "South Central US", - "name": "RedisGeo27397", + "name": "RedisGeo27810", "type": "Microsoft.Cache/Redis", "tags": {}, "properties": { "provisioningState": "Succeeded", - "redisVersion": "4.0.14", + "redisVersion": "6.0", "sku": { "name": "Premium", "family": "P", @@ -2832,7 +2737,7 @@ "maxmemory-delta": "642" }, "accessKeys": null, - "hostName": "RedisGeo27397.redis.cache.windows.net", + "hostName": "RedisGeo27810.redis.cache.windows.net", "port": 6379, "sslPort": 6380, "linkedServers": [] @@ -2840,834 +2745,884 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/redis/RedisGeo1116/linkedServers/RedisGeo27397?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4921/providers/Microsoft.Cache/redis/RedisGeo16773/linkedServers/RedisGeo27810?api-version=2022-06-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "233", "Content-Type": "application/json", - "traceparent": "00-f84826fcaf7b19408d0015985702fe51-633b56039227d640-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "adcc6f45d8cdafe7eaa498909be27734", + "traceparent": "00-3e0ad6e040f382e262198a08367764ff-98370ad4ebd699a8-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "95ed50ac4e6e80b0d4f337cd1c5ef8a3", "x-ms-return-client-request-id": "true" }, "RequestBody": { "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo27397", + "linkedRedisCacheId": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4921/providers/Microsoft.Cache/Redis/RedisGeo27810", "linkedRedisCacheLocation": "southcentralus", "serverRole": "Secondary" } }, "StatusCode": 201, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "adcc6f45d8cdafe7eaa498909be27734", - "Content-Length": "547", + "client-request-id": "95ed50ac4e6e80b0d4f337cd1c5ef8a3", + "Content-Length": "695", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:36:28 GMT", + "Date": "Wed, 26 Oct 2022 06:42:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "faead050-5cb1-4a44-abb0-eb2f6400d634", - "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-request-id": "50a70a9f-f4ab-450b-95c2-0761e8f1b996", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T043628Z:faead050-5cb1-4a44-abb0-eb2f6400d634", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "e96aa292-0897-49d5-9477-14839b1b67c7", + "x-ms-ratelimit-remaining-subscription-writes": "1190", + "x-ms-request-id": "052f9bba-8b19-4cd4-8a9e-7d284a4d63f3", + "x-ms-routing-request-id": "WESTUS2:20221026T064230Z:e96aa292-0897-49d5-9477-14839b1b67c7", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo1116/linkedServers/RedisGeo27397", - "name": "RedisGeo27397", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4921/providers/Microsoft.Cache/Redis/RedisGeo16773/linkedServers/RedisGeo27810", + "name": "RedisGeo27810", "type": "Microsoft.Cache/Redis/linkedServers", "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo27397", + "linkedRedisCacheId": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4921/providers/Microsoft.Cache/Redis/RedisGeo27810", "linkedRedisCacheLocation": "South Central US", "serverRole": "Secondary", + "geoReplicatedPrimaryHostName": "RedisGeo27810.geo.redis.cache.windows.net", + "primaryHostName": "RedisGeo16773.redis.cache.windows.net", "provisioningState": "Creating" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/redis/RedisGeo1116/linkedServers/RedisGeo27397?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f84826fcaf7b19408d0015985702fe51-0a503276ef243641-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9c5ffa9d35b1627a060f91c185df4145", + "traceparent": "00-3e0ad6e040f382e262198a08367764ff-b8150a5a5fa58c01-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7e5921970f2bb298f81b7e27d84b17de", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "9c5ffa9d35b1627a060f91c185df4145", - "Content-Length": "493", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:36:29 GMT", + "client-request-id": "7e5921970f2bb298f81b7e27d84b17de", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:42:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a41dadd1-15f9-43ac-9d4e-1f1dd6726cbe", - "x-ms-ratelimit-remaining-subscription-reads": "11858", - "x-ms-request-id": "394b2eea-6628-4728-9e35-7d2aa6910064", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T043630Z:a41dadd1-15f9-43ac-9d4e-1f1dd6726cbe", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "6743abc3-8417-49b1-be3a-91a676962371", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "f9103e4a-b7bf-4af5-8972-9cc5fb0552f1", + "x-ms-routing-request-id": "WESTUS2:20221026T064230Z:6743abc3-8417-49b1-be3a-91a676962371", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo1116/linkedServers/RedisGeo27397", - "name": "RedisGeo27397", - "type": "Microsoft.Cache/Redis/linkedServers", - "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo27397", - "linkedRedisCacheLocation": "South Central US", - "serverRole": "Secondary", - "provisioningState": "Creating" - } + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3", + "name": "052f9bba-8b19-4cd4-8a9e-7d284a4d63f3", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/redis/RedisGeo1116/linkedServers/RedisGeo27397?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f84826fcaf7b19408d0015985702fe51-1c56213abc2c9546-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "bd86a071e9f8395677bd7419c0f71a67", + "traceparent": "00-3e0ad6e040f382e262198a08367764ff-b588f5bde4b4390b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3b629537888044a0c22817cd5e936d53", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "bd86a071e9f8395677bd7419c0f71a67", - "Content-Length": "493", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:36:31 GMT", + "client-request-id": "3b629537888044a0c22817cd5e936d53", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:42:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6bcf01a0-c14d-4940-a82e-edb58065f3f4", - "x-ms-ratelimit-remaining-subscription-reads": "11857", - "x-ms-request-id": "fc011c88-9ab3-4acb-a248-6633786139a2", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T043631Z:6bcf01a0-c14d-4940-a82e-edb58065f3f4", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "2caf7d0b-cf2f-434d-8756-dd7f886ac44a", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "38772a4b-f371-4d34-a3ee-72d724f80ade", + "x-ms-routing-request-id": "WESTUS2:20221026T064232Z:2caf7d0b-cf2f-434d-8756-dd7f886ac44a", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo1116/linkedServers/RedisGeo27397", - "name": "RedisGeo27397", - "type": "Microsoft.Cache/Redis/linkedServers", - "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo27397", - "linkedRedisCacheLocation": "South Central US", - "serverRole": "Secondary", - "provisioningState": "Creating" - } + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3", + "name": "052f9bba-8b19-4cd4-8a9e-7d284a4d63f3", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/redis/RedisGeo1116/linkedServers/RedisGeo27397?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f84826fcaf7b19408d0015985702fe51-a1a449f4838c3942-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a0f3d2bada834183125a9c907a368958", + "traceparent": "00-3e0ad6e040f382e262198a08367764ff-4d51b2d48753a083-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "fa35e4707a04be788bd63493ea65ec33", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "a0f3d2bada834183125a9c907a368958", - "Content-Length": "493", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:36:33 GMT", + "client-request-id": "fa35e4707a04be788bd63493ea65ec33", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:42:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "69dba553-0b6d-4da9-a58f-bb9a30b0a0da", - "x-ms-ratelimit-remaining-subscription-reads": "11856", - "x-ms-request-id": "a9a72f44-3664-4c84-881c-ceed7e5c6410", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T043633Z:69dba553-0b6d-4da9-a58f-bb9a30b0a0da", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "0fd5de9c-7e8c-4287-8a85-ac63a7454d08", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "3021ba82-8ad6-49c9-8e1e-4e3699970aab", + "x-ms-routing-request-id": "WESTUS2:20221026T064233Z:0fd5de9c-7e8c-4287-8a85-ac63a7454d08", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo1116/linkedServers/RedisGeo27397", - "name": "RedisGeo27397", - "type": "Microsoft.Cache/Redis/linkedServers", - "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo27397", - "linkedRedisCacheLocation": "South Central US", - "serverRole": "Secondary", - "provisioningState": "Creating" - } + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3", + "name": "052f9bba-8b19-4cd4-8a9e-7d284a4d63f3", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/redis/RedisGeo1116/linkedServers/RedisGeo27397?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f84826fcaf7b19408d0015985702fe51-d4044b76bbcc3a45-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f57ed2712cfdb3cda42525f3c160a10f", + "traceparent": "00-3e0ad6e040f382e262198a08367764ff-3e33ef10c5289806-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7de61289471e0ed28115bb02f8ca5465", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "f57ed2712cfdb3cda42525f3c160a10f", - "Content-Length": "493", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:36:35 GMT", + "client-request-id": "7de61289471e0ed28115bb02f8ca5465", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:42:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a44616b1-e798-4daf-9184-42faa9d1f07d", - "x-ms-ratelimit-remaining-subscription-reads": "11855", - "x-ms-request-id": "d1ae583c-de63-475a-a626-791f074cf9f3", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T043635Z:a44616b1-e798-4daf-9184-42faa9d1f07d", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "771b9dca-5ac0-4989-a85e-ce9e026897f5", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "339dfec2-eb71-4abf-8e24-f105189c2c63", + "x-ms-routing-request-id": "WESTUS2:20221026T064234Z:771b9dca-5ac0-4989-a85e-ce9e026897f5", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo1116/linkedServers/RedisGeo27397", - "name": "RedisGeo27397", - "type": "Microsoft.Cache/Redis/linkedServers", - "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo27397", - "linkedRedisCacheLocation": "South Central US", - "serverRole": "Secondary", - "provisioningState": "Creating" - } + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3", + "name": "052f9bba-8b19-4cd4-8a9e-7d284a4d63f3", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/redis/RedisGeo1116/linkedServers/RedisGeo27397?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f84826fcaf7b19408d0015985702fe51-071a106a67a4a646-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b2062af4a0ec96c11c44ab9e4dc5bf41", + "traceparent": "00-3e0ad6e040f382e262198a08367764ff-e76d649df5958393-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f3b62aad1c15bcd91ca4b0aa540c5a5d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "b2062af4a0ec96c11c44ab9e4dc5bf41", - "Content-Length": "493", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:36:37 GMT", + "client-request-id": "f3b62aad1c15bcd91ca4b0aa540c5a5d", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:42:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9b87640c-687c-4917-b01e-edd516d61801", - "x-ms-ratelimit-remaining-subscription-reads": "11854", - "x-ms-request-id": "9e0e5e1e-98e5-48da-b6f9-a15bb7b1e04c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T043638Z:9b87640c-687c-4917-b01e-edd516d61801", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "dba34b84-0c2e-4247-a60d-7db71f70dc7c", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "12c87aa7-3c20-4c3f-ac38-a955420b227e", + "x-ms-routing-request-id": "WESTUS2:20221026T064236Z:dba34b84-0c2e-4247-a60d-7db71f70dc7c", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo1116/linkedServers/RedisGeo27397", - "name": "RedisGeo27397", - "type": "Microsoft.Cache/Redis/linkedServers", - "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo27397", - "linkedRedisCacheLocation": "South Central US", - "serverRole": "Secondary", - "provisioningState": "Creating" - } + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3", + "name": "052f9bba-8b19-4cd4-8a9e-7d284a4d63f3", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/redis/RedisGeo1116/linkedServers/RedisGeo27397?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f84826fcaf7b19408d0015985702fe51-c5324b5fb5a2d448-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "eea81b3325788d69053ffb5eb58f80b1", + "traceparent": "00-3e0ad6e040f382e262198a08367764ff-452f6d91fb3e930d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4c44e43cf0ac2835122679efbf75c6c0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "eea81b3325788d69053ffb5eb58f80b1", - "Content-Length": "493", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:36:42 GMT", + "client-request-id": "4c44e43cf0ac2835122679efbf75c6c0", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:42:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "14701eef-4dfd-4451-8222-df5ba4efdd23", - "x-ms-ratelimit-remaining-subscription-reads": "11853", - "x-ms-request-id": "9f24f5fa-5005-4a09-8150-327921cd8508", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T043643Z:14701eef-4dfd-4451-8222-df5ba4efdd23", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "5ea91f46-75b3-42b9-9a51-4c058f553dae", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "2a2db33d-7806-4043-8076-51c73c9aa7e7", + "x-ms-routing-request-id": "WESTUS2:20221026T064240Z:5ea91f46-75b3-42b9-9a51-4c058f553dae", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo1116/linkedServers/RedisGeo27397", - "name": "RedisGeo27397", - "type": "Microsoft.Cache/Redis/linkedServers", - "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo27397", - "linkedRedisCacheLocation": "South Central US", - "serverRole": "Secondary", - "provisioningState": "Creating" - } + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3", + "name": "052f9bba-8b19-4cd4-8a9e-7d284a4d63f3", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/redis/RedisGeo1116/linkedServers/RedisGeo27397?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f84826fcaf7b19408d0015985702fe51-3136255619450649-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4f9b8db8d72fd16c10e8d8b8812e66df", + "traceparent": "00-3e0ad6e040f382e262198a08367764ff-da95e188c39678c8-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "bfe6cf81f9af6c1d382960799728ba75", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "4f9b8db8d72fd16c10e8d8b8812e66df", - "Content-Length": "493", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:36:51 GMT", + "client-request-id": "bfe6cf81f9af6c1d382960799728ba75", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:42:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f4dc65be-e7e8-4768-bf3a-9a09c9052195", - "x-ms-ratelimit-remaining-subscription-reads": "11852", - "x-ms-request-id": "e7f16473-8f84-430a-a9e2-2df3814eba49", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T043651Z:f4dc65be-e7e8-4768-bf3a-9a09c9052195", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "0d717743-1a2b-4350-9184-f093a877e824", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "17368a95-3736-4774-b241-b052147a272c", + "x-ms-routing-request-id": "WESTUS2:20221026T064248Z:0d717743-1a2b-4350-9184-f093a877e824", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo1116/linkedServers/RedisGeo27397", - "name": "RedisGeo27397", - "type": "Microsoft.Cache/Redis/linkedServers", - "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo27397", - "linkedRedisCacheLocation": "South Central US", - "serverRole": "Secondary", - "provisioningState": "Creating" - } + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3", + "name": "052f9bba-8b19-4cd4-8a9e-7d284a4d63f3", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/redis/RedisGeo1116/linkedServers/RedisGeo27397?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f84826fcaf7b19408d0015985702fe51-74ae904ba643054e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a5c0e366b2b8cf96c079acaca462e08c", + "traceparent": "00-3e0ad6e040f382e262198a08367764ff-2d446458a522e423-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "14c65ebb0785bcb8f58de1eea3eafda6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "a5c0e366b2b8cf96c079acaca462e08c", - "Content-Length": "493", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:37:08 GMT", + "client-request-id": "14c65ebb0785bcb8f58de1eea3eafda6", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:43:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "71f49b68-b442-4a15-a114-bed3bb52a7e8", - "x-ms-ratelimit-remaining-subscription-reads": "11851", - "x-ms-request-id": "6e79c8a7-cb8d-45b4-910b-977b62fc18fb", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T043708Z:71f49b68-b442-4a15-a114-bed3bb52a7e8", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "cb6b7730-8171-4dd8-a74b-289182782647", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "c9cb663b-5d57-44f7-b77b-f3f3bed03de5", + "x-ms-routing-request-id": "WESTUS2:20221026T064304Z:cb6b7730-8171-4dd8-a74b-289182782647", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo1116/linkedServers/RedisGeo27397", - "name": "RedisGeo27397", - "type": "Microsoft.Cache/Redis/linkedServers", - "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo27397", - "linkedRedisCacheLocation": "South Central US", - "serverRole": "Secondary", - "provisioningState": "Creating" - } + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3", + "name": "052f9bba-8b19-4cd4-8a9e-7d284a4d63f3", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/redis/RedisGeo1116/linkedServers/RedisGeo27397?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f84826fcaf7b19408d0015985702fe51-5750904711966544-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c0e5f9c46f295c11afd7dd8f4db10cd7", + "traceparent": "00-3e0ad6e040f382e262198a08367764ff-23a6277c542c930a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "8528efde9a2542aec6d813838fbc91e9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "c0e5f9c46f295c11afd7dd8f4db10cd7", - "Content-Length": "493", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:37:41 GMT", + "client-request-id": "8528efde9a2542aec6d813838fbc91e9", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:43:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d99a5037-6640-4031-a3d3-217add3d807f", - "x-ms-ratelimit-remaining-subscription-reads": "11850", - "x-ms-request-id": "51e43b20-0631-4c2c-83a8-c92258408c05", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T043742Z:d99a5037-6640-4031-a3d3-217add3d807f", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "e3e5240b-fb9c-4e04-b2cf-9c6d970ace12", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "c3b543ff-cce6-48ee-bd16-18067393b5ab", + "x-ms-routing-request-id": "WESTUS2:20221026T064336Z:e3e5240b-fb9c-4e04-b2cf-9c6d970ace12", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo1116/linkedServers/RedisGeo27397", - "name": "RedisGeo27397", - "type": "Microsoft.Cache/Redis/linkedServers", - "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo27397", - "linkedRedisCacheLocation": "South Central US", - "serverRole": "Secondary", - "provisioningState": "Creating" - } + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3", + "name": "052f9bba-8b19-4cd4-8a9e-7d284a4d63f3", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/redis/RedisGeo1116/linkedServers/RedisGeo27397?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f84826fcaf7b19408d0015985702fe51-6df9adae28ffff44-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d1f81cd9dbcf06f9f6cc8fb62abf2cad", + "traceparent": "00-3e0ad6e040f382e262198a08367764ff-6b6831bc98bef9b1-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6133036cb1af793b162aca21182ec84d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "d1f81cd9dbcf06f9f6cc8fb62abf2cad", - "Content-Length": "493", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:38:14 GMT", + "client-request-id": "6133036cb1af793b162aca21182ec84d", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:44:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d33125a2-6419-47cb-b2ce-af00084e5b61", - "x-ms-ratelimit-remaining-subscription-reads": "11849", - "x-ms-request-id": "aca7ab45-aaa7-4f61-ba2a-916219d5e2e8", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T043814Z:d33125a2-6419-47cb-b2ce-af00084e5b61", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "d86bf343-0e3f-4a36-9112-c91d837520c2", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "68927262-6da9-4bb1-88c2-9d0370c197ef", + "x-ms-routing-request-id": "WESTUS2:20221026T064408Z:d86bf343-0e3f-4a36-9112-c91d837520c2", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo1116/linkedServers/RedisGeo27397", - "name": "RedisGeo27397", - "type": "Microsoft.Cache/Redis/linkedServers", - "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo27397", - "linkedRedisCacheLocation": "South Central US", - "serverRole": "Secondary", - "provisioningState": "Creating" - } + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3", + "name": "052f9bba-8b19-4cd4-8a9e-7d284a4d63f3", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/redis/RedisGeo1116/linkedServers/RedisGeo27397?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f84826fcaf7b19408d0015985702fe51-f9b661b642ba9747-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "87f44b08a648f6b6d263f5e1d406820f", + "traceparent": "00-3e0ad6e040f382e262198a08367764ff-a6b8c446d6a2bef5-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a89bb92c34002050b0834dadf3342d39", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "87f44b08a648f6b6d263f5e1d406820f", - "Content-Length": "493", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:38:46 GMT", + "client-request-id": "a89bb92c34002050b0834dadf3342d39", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:44:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9616ab47-e6a0-473e-9eac-34317fddbabb", - "x-ms-ratelimit-remaining-subscription-reads": "11848", - "x-ms-request-id": "9875104f-b851-4eaf-97b6-52204f768b0e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T043847Z:9616ab47-e6a0-473e-9eac-34317fddbabb", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "7714063e-8b7a-4c58-af52-b383357ce70f", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "07a95613-85e2-4800-ad39-23fc2edce4a2", + "x-ms-routing-request-id": "WESTUS2:20221026T064440Z:7714063e-8b7a-4c58-af52-b383357ce70f", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo1116/linkedServers/RedisGeo27397", - "name": "RedisGeo27397", - "type": "Microsoft.Cache/Redis/linkedServers", - "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo27397", - "linkedRedisCacheLocation": "South Central US", - "serverRole": "Secondary", - "provisioningState": "Creating" - } + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3", + "name": "052f9bba-8b19-4cd4-8a9e-7d284a4d63f3", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/redis/RedisGeo1116/linkedServers/RedisGeo27397?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f84826fcaf7b19408d0015985702fe51-b3890a8471bda547-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "88d3d56c0e6ae8bd00dfc95ce05a32ef", + "traceparent": "00-3e0ad6e040f382e262198a08367764ff-3f9cea6abdb27770-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a082f7fc9cb72cf7b4ae6efbd08c2a97", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "88d3d56c0e6ae8bd00dfc95ce05a32ef", - "Content-Length": "493", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:39:20 GMT", + "client-request-id": "a082f7fc9cb72cf7b4ae6efbd08c2a97", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:45:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "695fb1f6-bd45-4dd8-8b21-9222916cb170", - "x-ms-ratelimit-remaining-subscription-reads": "11847", - "x-ms-request-id": "ec8e5ce7-a849-4389-8388-58c0e6cb7cfa", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T043920Z:695fb1f6-bd45-4dd8-8b21-9222916cb170", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "c21296a2-e26d-42e2-bc2a-e04ef556e505", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "122c664d-2a78-4355-bc18-3300ef6b97be", + "x-ms-routing-request-id": "WESTUS2:20221026T064513Z:c21296a2-e26d-42e2-bc2a-e04ef556e505", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo1116/linkedServers/RedisGeo27397", - "name": "RedisGeo27397", - "type": "Microsoft.Cache/Redis/linkedServers", - "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo27397", - "linkedRedisCacheLocation": "South Central US", - "serverRole": "Secondary", - "provisioningState": "Creating" - } + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3", + "name": "052f9bba-8b19-4cd4-8a9e-7d284a4d63f3", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/redis/RedisGeo1116/linkedServers/RedisGeo27397?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f84826fcaf7b19408d0015985702fe51-99f46b089e578840-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "01872faa85bc328e6601ff6be51831ef", + "traceparent": "00-3e0ad6e040f382e262198a08367764ff-83badcf172608875-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d656c50fe92037e9b212b12c648e85e1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "01872faa85bc328e6601ff6be51831ef", - "Content-Length": "493", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:39:53 GMT", + "client-request-id": "d656c50fe92037e9b212b12c648e85e1", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:45:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2ce6411a-cd6f-40a3-9d96-5b0d198c8a17", - "x-ms-ratelimit-remaining-subscription-reads": "11846", - "x-ms-request-id": "93015f3e-952e-444e-8b91-4d5f4c255451", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T043953Z:2ce6411a-cd6f-40a3-9d96-5b0d198c8a17", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "cdea8590-3a60-42c6-8df9-b496469767f0", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "9bf526cf-c56f-4f80-8079-a9d2907b10f0", + "x-ms-routing-request-id": "WESTUS2:20221026T064545Z:cdea8590-3a60-42c6-8df9-b496469767f0", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo1116/linkedServers/RedisGeo27397", - "name": "RedisGeo27397", - "type": "Microsoft.Cache/Redis/linkedServers", - "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo27397", - "linkedRedisCacheLocation": "South Central US", - "serverRole": "Secondary", - "provisioningState": "Creating" - } + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3", + "name": "052f9bba-8b19-4cd4-8a9e-7d284a4d63f3", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/redis/RedisGeo1116/linkedServers/RedisGeo27397?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f84826fcaf7b19408d0015985702fe51-e05588502fe1f74e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "544a7f49a4ebf9438d0b8768dc591577", + "traceparent": "00-3e0ad6e040f382e262198a08367764ff-a50d18e6791f54a8-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "202491fd28ac9096c26ef452c6555023", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "544a7f49a4ebf9438d0b8768dc591577", - "Content-Length": "492", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:40:26 GMT", + "client-request-id": "202491fd28ac9096c26ef452c6555023", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:46:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dc2360e6-2944-4693-b395-f4335b48d1e9", - "x-ms-ratelimit-remaining-subscription-reads": "11857", - "x-ms-request-id": "8f57afa2-883d-4638-9ac3-5f8dce442b13", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T044026Z:dc2360e6-2944-4693-b395-f4335b48d1e9", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "ebd0f1c0-6b33-41fb-8251-64a76208781d", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "0321c737-12d8-4a7e-8a5a-6a12752b0116", + "x-ms-routing-request-id": "WESTUS2:20221026T064617Z:ebd0f1c0-6b33-41fb-8251-64a76208781d", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo1116/linkedServers/RedisGeo27397", - "name": "RedisGeo27397", - "type": "Microsoft.Cache/Redis/linkedServers", - "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo27397", - "linkedRedisCacheLocation": "South Central US", - "serverRole": "Secondary", - "provisioningState": "Syncing" - } + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3", + "name": "052f9bba-8b19-4cd4-8a9e-7d284a4d63f3", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/redis/RedisGeo1116/linkedServers/RedisGeo27397?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f84826fcaf7b19408d0015985702fe51-e2717bbcaf5cdc4e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a4360631807ee75347a121680f5103e8", + "traceparent": "00-3e0ad6e040f382e262198a08367764ff-73090d4da2ebba95-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2e9db55857de13180d4aeda5eacac725", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "a4360631807ee75347a121680f5103e8", - "Content-Length": "492", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:40:59 GMT", + "client-request-id": "2e9db55857de13180d4aeda5eacac725", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:46:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f112b6f7-0d79-4fda-9ff6-dff3fed80711", - "x-ms-ratelimit-remaining-subscription-reads": "11856", - "x-ms-request-id": "1b31fd1f-ea24-4cb7-afa8-16e0d8ca08e3", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T044059Z:f112b6f7-0d79-4fda-9ff6-dff3fed80711", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "1a888815-7a8f-4716-8bf8-5e0e593e032d", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "c9258424-45d5-43ee-9370-3a84de4a2ecc", + "x-ms-routing-request-id": "WESTUS2:20221026T064649Z:1a888815-7a8f-4716-8bf8-5e0e593e032d", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo1116/linkedServers/RedisGeo27397", - "name": "RedisGeo27397", - "type": "Microsoft.Cache/Redis/linkedServers", - "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo27397", - "linkedRedisCacheLocation": "South Central US", - "serverRole": "Secondary", - "provisioningState": "Syncing" - } + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3", + "name": "052f9bba-8b19-4cd4-8a9e-7d284a4d63f3", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/redis/RedisGeo1116/linkedServers/RedisGeo27397?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f84826fcaf7b19408d0015985702fe51-409e3a6d6d422540-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6113daaedd100603ec8e74b0fe25560d", + "traceparent": "00-3e0ad6e040f382e262198a08367764ff-b83227d361a513fb-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3ffe8c280967e6eb2fc613b2f597715d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "6113daaedd100603ec8e74b0fe25560d", - "Content-Length": "492", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:41:31 GMT", + "client-request-id": "3ffe8c280967e6eb2fc613b2f597715d", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:47:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "610364b8-1d49-496f-9cd1-3dc9be78be35", - "x-ms-ratelimit-remaining-subscription-reads": "11855", - "x-ms-request-id": "1ba73131-4393-481e-b8ab-6345163b858d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T044132Z:610364b8-1d49-496f-9cd1-3dc9be78be35", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "0bcc8609-4286-4c79-a521-7fd588972226", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "329743aa-4e5d-4e00-835b-66f2dd209598", + "x-ms-routing-request-id": "WESTUS2:20221026T064721Z:0bcc8609-4286-4c79-a521-7fd588972226", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo1116/linkedServers/RedisGeo27397", - "name": "RedisGeo27397", - "type": "Microsoft.Cache/Redis/linkedServers", - "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo27397", - "linkedRedisCacheLocation": "South Central US", - "serverRole": "Secondary", - "provisioningState": "Syncing" - } + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3", + "name": "052f9bba-8b19-4cd4-8a9e-7d284a4d63f3", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-3e0ad6e040f382e262198a08367764ff-6ee8e73d297ea0a7-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "afd38ec157f0a603781113623bf1a5f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "afd38ec157f0a603781113623bf1a5f7", + "Content-Length": "361", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:47:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "adc01b42-fac1-4cb0-942c-cb4c3e065a4c", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "0c86af19-c529-4544-9b2b-f91287fb0901", + "x-ms-routing-request-id": "WESTUS2:20221026T064753Z:adc01b42-fac1-4cb0-942c-cb4c3e065a4c", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/052f9bba-8b19-4cd4-8a9e-7d284a4d63f3", + "name": "052f9bba-8b19-4cd4-8a9e-7d284a4d63f3", + "status": "Succeeded", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/redis/RedisGeo1116/linkedServers/RedisGeo27397?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4921/providers/Microsoft.Cache/redis/RedisGeo16773/linkedServers/RedisGeo27810?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f84826fcaf7b19408d0015985702fe51-2df21d8b4ac60e44-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "df3987eb8ce1c9702b630d4a82daea3b", + "traceparent": "00-3e0ad6e040f382e262198a08367764ff-5a6e9709dad25291-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3929cea610574fbbcab7fe1743651e76", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "df3987eb8ce1c9702b630d4a82daea3b", - "Content-Length": "494", + "client-request-id": "3929cea610574fbbcab7fe1743651e76", + "Content-Length": "628", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:42:05 GMT", + "Date": "Wed, 26 Oct 2022 06:47:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "84bccb76-9eaa-4543-8928-66b5858dca9f", - "x-ms-ratelimit-remaining-subscription-reads": "11854", - "x-ms-request-id": "b83251f5-41f6-4ffb-89e0-3a87c6a886b8", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T044205Z:84bccb76-9eaa-4543-8928-66b5858dca9f", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "55fa4733-06c7-4469-ab0a-5baf1056864f", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "230d5df8-da53-4746-866c-89bf3aeeabc6", + "x-ms-routing-request-id": "WESTUS2:20221026T064755Z:55fa4733-06c7-4469-ab0a-5baf1056864f", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo1116/linkedServers/RedisGeo27397", - "name": "RedisGeo27397", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4921/providers/Microsoft.Cache/Redis/RedisGeo16773/linkedServers/RedisGeo27810", + "name": "RedisGeo27810", "type": "Microsoft.Cache/Redis/linkedServers", "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo27397", + "linkedRedisCacheId": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4921/providers/Microsoft.Cache/Redis/RedisGeo27810", "linkedRedisCacheLocation": "South Central US", "serverRole": "Secondary", + "geoReplicatedPrimaryHostName": "RedisGeo27810.geo.redis.cache.windows.net", + "primaryHostName": "RedisGeo16773.redis.cache.windows.net", "provisioningState": "Succeeded" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/redis/RedisGeo1116/linkedServers/RedisGeo27397?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4921/providers/Microsoft.Cache/redis/RedisGeo16773/linkedServers/RedisGeo27810?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-78616453d197e147b841182be1149a34-9d30ce8efafa8a45-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "02ba9e08b4465366022fb7f00ca3e921", + "traceparent": "00-8e0fee325aa1b73dec61ba48517f84af-7bef8deca678860b-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5ce38fd918f7d0358958c656f689aa3d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "02ba9e08b4465366022fb7f00ca3e921", - "Content-Length": "494", + "client-request-id": "5ce38fd918f7d0358958c656f689aa3d", + "Content-Length": "628", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:42:06 GMT", + "Date": "Wed, 26 Oct 2022 06:47:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "90dd5816-5d1e-4b9f-9c9c-670dadc2be8a", - "x-ms-ratelimit-remaining-subscription-reads": "11853", - "x-ms-request-id": "604e2d2c-dd86-455a-934f-aa82a4f1441b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T044207Z:90dd5816-5d1e-4b9f-9c9c-670dadc2be8a", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "dbc08459-2961-4cce-b332-3da4300a722d", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "471dc4f5-f846-42df-8e6b-dd20a751b297", + "x-ms-routing-request-id": "WESTUS2:20221026T064757Z:dbc08459-2961-4cce-b332-3da4300a722d", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo1116/linkedServers/RedisGeo27397", - "name": "RedisGeo27397", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4921/providers/Microsoft.Cache/Redis/RedisGeo16773/linkedServers/RedisGeo27810", + "name": "RedisGeo27810", "type": "Microsoft.Cache/Redis/linkedServers", "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo27397", + "linkedRedisCacheId": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4921/providers/Microsoft.Cache/Redis/RedisGeo27810", "linkedRedisCacheLocation": "South Central US", "serverRole": "Secondary", + "geoReplicatedPrimaryHostName": "RedisGeo27810.geo.redis.cache.windows.net", + "primaryHostName": "RedisGeo16773.redis.cache.windows.net", "provisioningState": "Succeeded" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/redis/RedisGeo1116/linkedServers?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4921/providers/Microsoft.Cache/redis/RedisGeo16773/linkedServers?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4674121fe2427245ada17498cda89eb1-39a1f5cc3c08354c-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "877d144a24172106694935add0b88412", + "traceparent": "00-5855f529fd19be6bd94151c1730cbc39-0615c292e55d209f-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "260b1b21386db106d284e53958ec6213", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "877d144a24172106694935add0b88412", - "Content-Length": "506", + "client-request-id": "260b1b21386db106d284e53958ec6213", + "Content-Length": "640", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:42:07 GMT", + "Date": "Wed, 26 Oct 2022 06:47:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b832c24e-761b-46a7-b821-83265457d456", - "x-ms-ratelimit-remaining-subscription-reads": "11852", - "x-ms-request-id": "7456c95d-25fa-473c-9e93-404700ac3a7c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T044207Z:b832c24e-761b-46a7-b821-83265457d456", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "b9aae5dd-52e7-4a91-83b6-5c923c2e7998", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "5671354f-178e-47a1-b37b-c394bdaf47ad", + "x-ms-routing-request-id": "WESTUS2:20221026T064758Z:b9aae5dd-52e7-4a91-83b6-5c923c2e7998", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo1116/linkedServers/RedisGeo27397", - "name": "RedisGeo27397", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4921/providers/Microsoft.Cache/Redis/RedisGeo16773/linkedServers/RedisGeo27810", + "name": "RedisGeo27810", "type": "Microsoft.Cache/Redis/linkedServers", "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo27397", + "linkedRedisCacheId": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4921/providers/Microsoft.Cache/Redis/RedisGeo27810", "linkedRedisCacheLocation": "South Central US", "serverRole": "Secondary", + "geoReplicatedPrimaryHostName": "RedisGeo27810.geo.redis.cache.windows.net", + "primaryHostName": "RedisGeo16773.redis.cache.windows.net", "provisioningState": "Succeeded" } } @@ -3675,87 +3630,91 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/redis/RedisGeo27397/linkedServers/RedisGeo1116?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4921/providers/Microsoft.Cache/redis/RedisGeo27810/linkedServers/RedisGeo16773?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d48b3d328c744e44a439f02e5e7c4980-505e38fdc072a349-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5fa738a4546a37c721e6dcb1d480bc88", + "traceparent": "00-8751f1127c0b4906e4788bcca089d342-729483add6ae6a73-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ac899cf3480e8d009959b0ff4a655841", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "5fa738a4546a37c721e6dcb1d480bc88", - "Content-Length": "490", + "client-request-id": "ac899cf3480e8d009959b0ff4a655841", + "Content-Length": "626", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:42:08 GMT", + "Date": "Wed, 26 Oct 2022 06:47:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "58937874-03e0-48e5-96c3-173367c68f29", - "x-ms-ratelimit-remaining-subscription-reads": "11851", - "x-ms-request-id": "eb411940-7a70-46c9-93fd-155c38bbaf23", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T044209Z:58937874-03e0-48e5-96c3-173367c68f29", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "4d294cdb-f4d4-4ade-bb97-cd1d6a70b757", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "19024994-27fe-466d-aed5-21c9cee871f9", + "x-ms-routing-request-id": "WESTUS2:20221026T064759Z:4d294cdb-f4d4-4ade-bb97-cd1d6a70b757", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo27397/linkedServers/RedisGeo1116", - "name": "RedisGeo1116", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4921/providers/Microsoft.Cache/Redis/RedisGeo27810/linkedServers/RedisGeo16773", + "name": "RedisGeo16773", "type": "Microsoft.Cache/Redis/linkedServers", "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo1116", + "linkedRedisCacheId": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4921/providers/Microsoft.Cache/Redis/RedisGeo16773", "linkedRedisCacheLocation": "North Central US", "serverRole": "Primary", + "geoReplicatedPrimaryHostName": "RedisGeo16773.geo.redis.cache.windows.net", + "primaryHostName": "RedisGeo16773.redis.cache.windows.net", "provisioningState": "Succeeded" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/redis/RedisGeo27397/linkedServers?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4921/providers/Microsoft.Cache/redis/RedisGeo27810/linkedServers?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-03b503bd3c2db244929f5aa93b705e3e-f846af684eba6548-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6d00eb7a635de323989898fc7fb98349", + "traceparent": "00-77ae5992733cacd5a5d29a8f54b49cd3-b889c2343a792580-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "27f6c10cf759a00889328a7233fb779c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "6d00eb7a635de323989898fc7fb98349", - "Content-Length": "502", + "client-request-id": "27f6c10cf759a00889328a7233fb779c", + "Content-Length": "638", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:42:09 GMT", + "Date": "Wed, 26 Oct 2022 06:48:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d3d73b65-c44d-41b1-8150-36052b3edc69", - "x-ms-ratelimit-remaining-subscription-reads": "11850", - "x-ms-request-id": "f94eb400-58ab-4116-99e7-acf4fa4aa72b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T044209Z:d3d73b65-c44d-41b1-8150-36052b3edc69", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "2dcdcf80-1be2-4f25-878a-4c813841dd92", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "19403050-3a61-4288-99dd-142b100cf3f3", + "x-ms-routing-request-id": "WESTUS2:20221026T064800Z:2dcdcf80-1be2-4f25-878a-4c813841dd92", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo27397/linkedServers/RedisGeo1116", - "name": "RedisGeo1116", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4921/providers/Microsoft.Cache/Redis/RedisGeo27810/linkedServers/RedisGeo16773", + "name": "RedisGeo16773", "type": "Microsoft.Cache/Redis/linkedServers", "properties": { - "linkedRedisCacheId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/Redis/RedisGeo1116", + "linkedRedisCacheId": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4921/providers/Microsoft.Cache/Redis/RedisGeo16773", "linkedRedisCacheLocation": "North Central US", "serverRole": "Primary", + "geoReplicatedPrimaryHostName": "RedisGeo16773.geo.redis.cache.windows.net", + "primaryHostName": "RedisGeo16773.redis.cache.windows.net", "provisioningState": "Succeeded" } } @@ -3763,69 +3722,482 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/redis/RedisGeo1116/linkedServers/RedisGeo27397?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4921/providers/Microsoft.Cache/redis/RedisGeo16773/linkedServers/RedisGeo27810?api-version=2022-06-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-6418e30f1fb0954aabcb6c324c276a7d-dc95c66a542b6b41-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d44ca5ab89fbf6b64d46653147544de9", + "traceparent": "00-9bbc910ec6284cba532f5a4a2fbd4417-2e05665bc307cb06-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5962b3f5feffd82e1a7d8d148706666d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 204, + "StatusCode": 202, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "d44ca5ab89fbf6b64d46653147544de9", - "Date": "Fri, 26 Aug 2022 04:42:09 GMT", + "client-request-id": "5962b3f5feffd82e1a7d8d148706666d", + "Content-Length": "0", + "Date": "Wed, 26 Oct 2022 06:48:00 GMT", "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f46bd59a-745c-442b-ae01-f682784a6bed", - "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-request-id": "6ff37528-8e74-4a62-a065-284a464794a6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T044210Z:f46bd59a-745c-442b-ae01-f682784a6bed", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "db28ba74-e6f3-4ca3-aa44-385e67d13f3f", + "x-ms-ratelimit-remaining-subscription-deletes": "14997", + "x-ms-request-id": "41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf", + "x-ms-routing-request-id": "WESTUS2:20221026T064800Z:db28ba74-e6f3-4ca3-aa44-385e67d13f3f", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3724/providers/Microsoft.Cache/redis/RedisGeo27397/linkedServers/redisCacheName1?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-9bbc910ec6284cba532f5a4a2fbd4417-f8a87a158df73771-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "960913e1fe030d41921d0ddc69f31882", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "960913e1fe030d41921d0ddc69f31882", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:48:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "87fb98e7-151c-4a5b-97c2-0c1793cd68f0", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "9668a88b-7fa5-43b3-a108-55ec78e642de", + "x-ms-routing-request-id": "WESTUS2:20221026T064801Z:87fb98e7-151c-4a5b-97c2-0c1793cd68f0", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf", + "name": "41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-9bbc910ec6284cba532f5a4a2fbd4417-5cfa2923e130369f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "8f461ccbe0cebaa6fa65c517dc521a8c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "8f461ccbe0cebaa6fa65c517dc521a8c", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:48:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3fbfeb6c-3c54-4106-ab1a-811dc1ed4bd9", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "e9d8acf2-60f7-403a-b684-ca43920d7eef", + "x-ms-routing-request-id": "WESTUS2:20221026T064802Z:3fbfeb6c-3c54-4106-ab1a-811dc1ed4bd9", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf", + "name": "41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-9bbc910ec6284cba532f5a4a2fbd4417-8e195efa0fc05d8c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7432f023d0fc2d6a622004d82ddd92a0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "7432f023d0fc2d6a622004d82ddd92a0", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:48:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "94881bf3-275f-49b4-84d0-02aa4df3016b", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "11378055-3079-4878-8d38-8b2bbd040f98", + "x-ms-routing-request-id": "WESTUS2:20221026T064803Z:94881bf3-275f-49b4-84d0-02aa4df3016b", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf", + "name": "41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-9bbc910ec6284cba532f5a4a2fbd4417-cb3ea79aea1b28fd-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a1119fcfca4701cf6c4e9c9d39293040", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "a1119fcfca4701cf6c4e9c9d39293040", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:48:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3e1a4186-208a-49bc-8e49-46d6d88ca885", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "0ccb1978-bfb7-461d-a0f2-140b845d51b0", + "x-ms-routing-request-id": "WESTUS2:20221026T064804Z:3e1a4186-208a-49bc-8e49-46d6d88ca885", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf", + "name": "41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-9bbc910ec6284cba532f5a4a2fbd4417-86f952ea8a48dfb3-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "79b88002a4c1fb86b2192caedbce8d1d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "79b88002a4c1fb86b2192caedbce8d1d", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:48:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "547adffb-baf4-4c2d-ae40-549ede362777", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "a93218a9-d8da-4a01-9058-acfc4f9e443c", + "x-ms-routing-request-id": "WESTUS2:20221026T064806Z:547adffb-baf4-4c2d-ae40-549ede362777", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf", + "name": "41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-9bbc910ec6284cba532f5a4a2fbd4417-795210e395bdbd16-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3d4824d378415845203108ad33cdf339", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "3d4824d378415845203108ad33cdf339", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:48:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "cd89fcde-f737-4df2-bf47-153554023739", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "df070a68-4b2c-463a-a330-0180f2518474", + "x-ms-routing-request-id": "WESTUS2:20221026T064810Z:cd89fcde-f737-4df2-bf47-153554023739", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf", + "name": "41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-9bbc910ec6284cba532f5a4a2fbd4417-9ab0ebfa28c4c469-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "add5c4ef18242bdf1915ef2e9e21269e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "add5c4ef18242bdf1915ef2e9e21269e", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:48:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "84f103c8-6df8-4af3-9eec-1fbd1a177ef7", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "2ae2f719-2b4c-45e4-a7c8-42ab50132143", + "x-ms-routing-request-id": "WESTUS2:20221026T064818Z:84f103c8-6df8-4af3-9eec-1fbd1a177ef7", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf", + "name": "41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-9bbc910ec6284cba532f5a4a2fbd4417-dcca8c813f44ed33-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "14c97fc1f3e18afe3b5f58909bd8c7e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "14c97fc1f3e18afe3b5f58909bd8c7e4", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:48:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f86e11e8-6b51-4abb-ab81-98525cdb9757", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "b299fea7-3a57-494b-ad48-d76fa8810c07", + "x-ms-routing-request-id": "WESTUS2:20221026T064834Z:f86e11e8-6b51-4abb-ab81-98525cdb9757", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf", + "name": "41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-9bbc910ec6284cba532f5a4a2fbd4417-627c25808bdf3dc6-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "16bef325e0f8baf8451c232b8916baff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "16bef325e0f8baf8451c232b8916baff", + "Content-Length": "362", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:49:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "aa501082-019e-4d67-b7d3-8025a60930ff", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "d2e120f8-9c0f-442c-b1db-87bbd77f9f4f", + "x-ms-routing-request-id": "WESTUS2:20221026T064906Z:aa501082-019e-4d67-b7d3-8025a60930ff", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf", + "name": "41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-9bbc910ec6284cba532f5a4a2fbd4417-bf0461ef4f6faf93-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b4ec690adf03fb58c54b72c5bf4f8f41", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North%20Central%20US/asyncOperations/41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "b4ec690adf03fb58c54b72c5bf4f8f41", + "Content-Length": "361", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:49:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c80bc6b4-5cc7-4f16-9a03-5052ab2dc98a", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "86b80743-1c69-4713-9641-ffc63e821cb1", + "x-ms-routing-request-id": "WESTUS2:20221026T064939Z:c80bc6b4-5cc7-4f16-9a03-5052ab2dc98a", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/North Central US/asyncOperations/41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf", + "name": "41c2fa73-f072-4c4e-b835-d8c0ce3ef7bf", + "status": "Succeeded", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4921/providers/Microsoft.Cache/redis/RedisGeo27810/linkedServers/redisCacheName1?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-2cdc91fff3537543afe2b50127e68948-1d59077992b9d54c-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e433ac8d17b841b514c4c7d2bbcab768", + "traceparent": "00-ff9d95ebec9f9fdc47e2a647d2b4ff98-9d13e9ed9bac0b3c-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ab090a4e0f62e1a6870fcfc4cfd30024", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "e433ac8d17b841b514c4c7d2bbcab768", + "client-request-id": "ab090a4e0f62e1a6870fcfc4cfd30024", "Content-Length": "188", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 04:42:10 GMT", + "Date": "Wed, 26 Oct 2022 06:49:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "26504e92-b101-4cb7-82c8-0978e53b4037", - "x-ms-ratelimit-remaining-subscription-reads": "11849", - "x-ms-request-id": "15880547-0357-486e-8232-3bf6fa6f9cf1", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T044211Z:26504e92-b101-4cb7-82c8-0978e53b4037", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "e34af6f2-3265-4be1-9cbc-b394abd9fd7a", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "cececf5e-0070-4b18-8ddb-32f634225aeb", + "x-ms-routing-request-id": "WESTUS2:20221026T064939Z:e34af6f2-3265-4be1-9cbc-b394abd9fd7a", + "x-rp-server-mvid": "be1ed6d8-4bcc-498f-a45e-34b9fb6c6358" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "A requested resource could not be found. It may already have been deleted.\r\nRequestID=15880547-0357-486e-8232-3bf6fa6f9cf1", + "message": "A requested resource could not be found. It may already have been deleted.\r\nRequestID=cececf5e-0070-4b18-8ddb-32f634225aeb", "target": null } } @@ -3833,8 +4205,8 @@ ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "625367535", + "RandomSeed": "1242114608", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + "SUBSCRIPTION_ID": "3919658b-68ae-4509-8c17-6a2238340ae7" } } diff --git a/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/GetListKeysFunctionalTests/CreateUpdateDeleteTest.json b/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/GetListKeysFunctionalTests/CreateUpdateDeleteTest.json index 3e6938fa256f..3d528ef3019b 100644 --- a/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/GetListKeysFunctionalTests/CreateUpdateDeleteTest.json +++ b/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/GetListKeysFunctionalTests/CreateUpdateDeleteTest.json @@ -1,52 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d4be2d4adc8b8d43bf07581d37991516-90d7730c60abc44b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "065acf6c588d928c0372117e6c6eb4c3", + "traceparent": "00-1dbac9409eb55acb6d73617f867e7640-cf59695182567d08-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0e342fa9e51ac2c61ff669faea97d864", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "747", + "Content-Length": "405", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 05:07:51 GMT", + "Date": "Wed, 26 Oct 2022 06:49:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "67ce0fc2-995a-418e-97b2-1e191a4908f8", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "67ce0fc2-995a-418e-97b2-1e191a4908f8", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T050752Z:67ce0fc2-995a-418e-97b2-1e191a4908f8" + "x-ms-correlation-request-id": "11df5b9a-3f3e-4ee0-bb55-4eadca855cd2", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "11df5b9a-3f3e-4ee0-bb55-4eadca855cd2", + "x-ms-routing-request-id": "WESTUS2:20221026T064941Z:11df5b9a-3f3e-4ee0-bb55-4eadca855cd2" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7", "authorizationSource": "RoleBased", "managedByTenants": [], - "tags": { - "TagKey-9823": "TagValue-566", - "TagKey-3481": "TagValue-320", - "TagKey-4926": "TagValue-1187", - "TagKey-751": "TagValue-3921", - "TagKey-1866": "TagValue-8559", - "TagKey-3094": "TagValue-9190", - "TagKey-2449": "TagValue-9", - "TagKey-8379": "TagValue-164", - "TagKey-7470": "TagValue-2205", - "TagKey-4236": "TagValue-3698", - "TagKey-5316": "TagValue-2725" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "subscriptionId": "3919658b-68ae-4509-8c17-6a2238340ae7", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "displayName": "CacheTeam - Austin Tolani", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -56,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRG-6742?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/testRG-4660?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "43", "Content-Type": "application/json", - "traceparent": "00-2f48821e8086bc42b83a2a9e41af2b7b-279fad4a4c697e47-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4392c032d96171312c2d6324185fdb9d", + "traceparent": "00-d843a58a611d2333a33d2211ec027794-64d17a388d886f2f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e33240dac6854216804a88049d2f86d8", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -79,19 +66,19 @@ "Cache-Control": "no-cache", "Content-Length": "241", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 05:07:55 GMT", + "Date": "Wed, 26 Oct 2022 06:49:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f7733942-ef92-4a66-a1e0-a90824601252", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "f7733942-ef92-4a66-a1e0-a90824601252", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T050756Z:f7733942-ef92-4a66-a1e0-a90824601252" + "x-ms-correlation-request-id": "892834af-48fb-43b5-9661-2b907d4010ce", + "x-ms-ratelimit-remaining-subscription-writes": "1189", + "x-ms-request-id": "892834af-48fb-43b5-9661-2b907d4010ce", + "x-ms-routing-request-id": "WESTUS2:20221026T064942Z:892834af-48fb-43b5-9661-2b907d4010ce" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-6742", - "name": "testRG-6742", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4660", + "name": "testRG-4660", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "tags": { @@ -103,16 +90,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-6742/providers/Microsoft.Cache/redis/RedisBegin4410?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4660/providers/Microsoft.Cache/redis/RedisBegin8389?api-version=2022-06-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "87", "Content-Type": "application/json", - "traceparent": "00-9f7810f4a2fe5d439b63f288caf92ac5-3b333fa40b663c4b-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d569286183da53c89573c39066d17e58", + "traceparent": "00-5e58e786126b9beacbeab74e8aa6cf5a-20991be40bc707db-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "482a9b01246e61a7976c2690ea631843", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -127,33 +114,33 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "d569286183da53c89573c39066d17e58", - "Content-Length": "817", + "client-request-id": "482a9b01246e61a7976c2690ea631843", + "Content-Length": "814", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 05:08:03 GMT", + "Date": "Wed, 26 Oct 2022 06:49:44 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-6742/providers/Microsoft.Cache/redis/RedisBegin4410?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4660/providers/Microsoft.Cache/redis/RedisBegin8389?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b95494d2-d7d0-4406-a9eb-c6298170942a", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "39452148-f5d1-4562-aade-5630e50d6045", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T050804Z:b95494d2-d7d0-4406-a9eb-c6298170942a", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "0d16a149-ffdb-4e86-831a-a98909aacc8d", + "x-ms-ratelimit-remaining-subscription-writes": "1188", + "x-ms-request-id": "72bcfad2-f7d3-4d29-becf-ed5a7adc4639", + "x-ms-routing-request-id": "WESTUS2:20221026T064945Z:0d16a149-ffdb-4e86-831a-a98909aacc8d", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-6742/providers/Microsoft.Cache/Redis/RedisBegin4410", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4660/providers/Microsoft.Cache/Redis/RedisBegin8389", "location": "East US", - "name": "RedisBegin4410", + "name": "RedisBegin8389", "type": "Microsoft.Cache/Redis", "tags": {}, "properties": { "provisioningState": "Creating", - "redisVersion": "4.0.14", + "redisVersion": "6.0", "sku": { "name": "Premium", "family": "P", @@ -183,7 +170,7 @@ "primaryKey": "Sanitized", "secondaryKey": "Sanitized" }, - "hostName": "RedisBegin4410.redis.cache.windows.net", + "hostName": "RedisBegin8389.redis.cache.windows.net", "port": 6379, "sslPort": 6380, "linkedServers": [] @@ -191,38 +178,243 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-5e58e786126b9beacbeab74e8aa6cf5a-fbc5d37f99e37ca7-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3c9582212c3a1b6c8b81ed5af0b196e6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "3c9582212c3a1b6c8b81ed5af0b196e6", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:49:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7756bc59-690b-40ff-b5db-1ede1b442c93", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "c8dce8ef-7125-43cf-a195-8f65941d5692", + "x-ms-routing-request-id": "WESTUS2:20221026T064945Z:7756bc59-690b-40ff-b5db-1ede1b442c93", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639", + "name": "72bcfad2-f7d3-4d29-becf-ed5a7adc4639", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-5e58e786126b9beacbeab74e8aa6cf5a-73d4a93a9eace9fa-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "95b4c06f680edd08320c7cd48969a415", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "95b4c06f680edd08320c7cd48969a415", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:49:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "fb73c662-824b-4877-95c8-a89a445c3920", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "ca14f904-6fb2-48bc-8371-914ebec790bc", + "x-ms-routing-request-id": "WESTUS2:20221026T064946Z:fb73c662-824b-4877-95c8-a89a445c3920", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639", + "name": "72bcfad2-f7d3-4d29-becf-ed5a7adc4639", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-5e58e786126b9beacbeab74e8aa6cf5a-54f19b3d6ca458fd-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "676e44a4dccebc082d5ce5de370e2d1a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "676e44a4dccebc082d5ce5de370e2d1a", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:49:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "649addae-09c2-46cc-acc3-6d7ea3f9ea4b", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "12ce8d2e-bf6a-4295-a2ab-739836af4a2c", + "x-ms-routing-request-id": "WESTUS2:20221026T064947Z:649addae-09c2-46cc-acc3-6d7ea3f9ea4b", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639", + "name": "72bcfad2-f7d3-4d29-becf-ed5a7adc4639", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-5e58e786126b9beacbeab74e8aa6cf5a-43cd089c1dffc7eb-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "fccdb40332ceb9d47ab7092daf979121", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "fccdb40332ceb9d47ab7092daf979121", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:49:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "efd56b13-5e17-45ff-8144-96d7bffa2a22", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "81a6ca32-fe0a-4b07-8279-4e86efebc8f8", + "x-ms-routing-request-id": "WESTUS2:20221026T064948Z:efd56b13-5e17-45ff-8144-96d7bffa2a22", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639", + "name": "72bcfad2-f7d3-4d29-becf-ed5a7adc4639", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-5e58e786126b9beacbeab74e8aa6cf5a-2934de289efdf893-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "abb6d8dd2e429317b7f768b1822aa624", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "abb6d8dd2e429317b7f768b1822aa624", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 06:49:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3c32eff1-d86f-4cd8-a2b6-a861a4c3d250", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "9e568256-2424-4afb-b654-d9c276a65129", + "x-ms-routing-request-id": "WESTUS2:20221026T064950Z:3c32eff1-d86f-4cd8-a2b6-a861a4c3d250", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639", + "name": "72bcfad2-f7d3-4d29-becf-ed5a7adc4639", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9f7810f4a2fe5d439b63f288caf92ac5-0485f58452572e4b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "8b0daee06c593c57c9f0cc656ee1c55c", + "traceparent": "00-5e58e786126b9beacbeab74e8aa6cf5a-594295c5d14e9bce-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d5d162dfa79c724670b5ed17d2db0c95", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "8b0daee06c593c57c9f0cc656ee1c55c", + "client-request-id": "d5d162dfa79c724670b5ed17d2db0c95", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:08:03 GMT", + "Date": "Wed, 26 Oct 2022 06:49:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9d23f0f5-8a0a-4a6d-80f5-19298fdee3f2", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "fce8ae06-7450-4d98-aa26-3d66b7d4bd5d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T050804Z:9d23f0f5-8a0a-4a6d-80f5-19298fdee3f2", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "efc313db-8f2c-487f-957c-aa7d67cf88e5", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "20f3695a-0ee1-4a0c-8ff1-2517edb07525", + "x-ms-routing-request-id": "WESTUS2:20221026T064954Z:efc313db-8f2c-487f-957c-aa7d67cf88e5", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045", - "name": "39452148-f5d1-4562-aade-5630e50d6045", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639", + "name": "72bcfad2-f7d3-4d29-becf-ed5a7adc4639", "status": "InProgress", "startTime": null, "endTime": null, @@ -232,38 +424,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9f7810f4a2fe5d439b63f288caf92ac5-aca3c0598ddf454b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a269cce55576565231413f79589fe6aa", + "traceparent": "00-5e58e786126b9beacbeab74e8aa6cf5a-835821954fb7a2d4-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5e00c4ca8158d4d79c3a44d6c922364f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "a269cce55576565231413f79589fe6aa", + "client-request-id": "5e00c4ca8158d4d79c3a44d6c922364f", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:08:05 GMT", + "Date": "Wed, 26 Oct 2022 06:50:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7518cea8-f9f8-479e-b709-ca02f5215207", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "fc32584d-3e77-46a6-822e-b69d55ee1bb6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T050805Z:7518cea8-f9f8-479e-b709-ca02f5215207", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "2442d9c8-172c-4532-b7df-cd4ce593cbb5", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "4c0fc896-f2f9-4c50-a86c-e6dcf04ac64a", + "x-ms-routing-request-id": "WESTUS2:20221026T065003Z:2442d9c8-172c-4532-b7df-cd4ce593cbb5", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045", - "name": "39452148-f5d1-4562-aade-5630e50d6045", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639", + "name": "72bcfad2-f7d3-4d29-becf-ed5a7adc4639", "status": "InProgress", "startTime": null, "endTime": null, @@ -273,38 +465,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9f7810f4a2fe5d439b63f288caf92ac5-a6df129b843a8d48-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b8af8d60f3c442ff64287e7b3d91b9b4", + "traceparent": "00-5e58e786126b9beacbeab74e8aa6cf5a-1a700b7d21e40473-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4c4ee510bbc6368591433b8d4000c0dc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "b8af8d60f3c442ff64287e7b3d91b9b4", + "client-request-id": "4c4ee510bbc6368591433b8d4000c0dc", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:08:06 GMT", + "Date": "Wed, 26 Oct 2022 06:50:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1764b3f2-537a-4748-be15-48c51e95cc7b", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "5f58c995-0b54-40d2-9e3b-75b12dad98cf", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T050807Z:1764b3f2-537a-4748-be15-48c51e95cc7b", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "9899701c-0384-4a7a-a6e7-128f34528e12", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "4502e82d-7e14-46d0-a646-75c1c60939a5", + "x-ms-routing-request-id": "WESTUS2:20221026T065019Z:9899701c-0384-4a7a-a6e7-128f34528e12", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045", - "name": "39452148-f5d1-4562-aade-5630e50d6045", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639", + "name": "72bcfad2-f7d3-4d29-becf-ed5a7adc4639", "status": "InProgress", "startTime": null, "endTime": null, @@ -314,38 +506,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9f7810f4a2fe5d439b63f288caf92ac5-c782ad5e93b23243-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a143cf9b70818bbe5bb659182cdee429", + "traceparent": "00-5e58e786126b9beacbeab74e8aa6cf5a-8562d12b19a0197c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "bee6d2eb47295ecb8bfc39616270a84d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "a143cf9b70818bbe5bb659182cdee429", + "client-request-id": "bee6d2eb47295ecb8bfc39616270a84d", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:08:07 GMT", + "Date": "Wed, 26 Oct 2022 06:50:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "196aece6-739c-4bff-ada3-8ab249f1428e", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "d229b22a-f3f6-41f0-ad5a-ead79b214fba", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T050808Z:196aece6-739c-4bff-ada3-8ab249f1428e", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "7ff81228-f346-416f-ae9a-a1fc47123107", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "cb778aa0-88a5-4504-a3e2-c9a6bef52124", + "x-ms-routing-request-id": "WESTUS2:20221026T065051Z:7ff81228-f346-416f-ae9a-a1fc47123107", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045", - "name": "39452148-f5d1-4562-aade-5630e50d6045", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639", + "name": "72bcfad2-f7d3-4d29-becf-ed5a7adc4639", "status": "InProgress", "startTime": null, "endTime": null, @@ -355,38 +547,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9f7810f4a2fe5d439b63f288caf92ac5-a47f4b7f8c9cd045-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e004220a0d31f197cc273e4ed6d719a0", + "traceparent": "00-5e58e786126b9beacbeab74e8aa6cf5a-ab761b8a156ba3b4-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ec069e7ebf8d0ecf3fcacd144549949b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "e004220a0d31f197cc273e4ed6d719a0", + "client-request-id": "ec069e7ebf8d0ecf3fcacd144549949b", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:08:10 GMT", + "Date": "Wed, 26 Oct 2022 06:51:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e797339b-330d-4972-8f02-e043535478d3", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "a539d15b-3aa0-4bab-8af6-5c7d6c01bc7e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T050810Z:e797339b-330d-4972-8f02-e043535478d3", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "77e8c7ec-1223-4ed8-8737-664743b8b259", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "9dc99263-3886-4585-898a-f14f1ec366a5", + "x-ms-routing-request-id": "WESTUS2:20221026T065123Z:77e8c7ec-1223-4ed8-8737-664743b8b259", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045", - "name": "39452148-f5d1-4562-aade-5630e50d6045", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639", + "name": "72bcfad2-f7d3-4d29-becf-ed5a7adc4639", "status": "InProgress", "startTime": null, "endTime": null, @@ -396,38 +588,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9f7810f4a2fe5d439b63f288caf92ac5-593c8cce0a7fe642-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "88de8b87445bef29cf235c0d99e71686", + "traceparent": "00-5e58e786126b9beacbeab74e8aa6cf5a-07a32d3191bfe502-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f7eb6879783bc9261af0c1ca8223d321", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "88de8b87445bef29cf235c0d99e71686", + "client-request-id": "f7eb6879783bc9261af0c1ca8223d321", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:08:14 GMT", + "Date": "Wed, 26 Oct 2022 06:51:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dd81308c-9502-43d0-997f-c96061a7c036", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "baef1157-7b1d-4ec2-a3d7-1d12976eda52", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T050815Z:dd81308c-9502-43d0-997f-c96061a7c036", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "4eb95221-0e38-4d38-ab52-9aa63317599e", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "bf40c731-880f-4546-8233-b2a129f9b4ac", + "x-ms-routing-request-id": "WESTUS2:20221026T065155Z:4eb95221-0e38-4d38-ab52-9aa63317599e", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045", - "name": "39452148-f5d1-4562-aade-5630e50d6045", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639", + "name": "72bcfad2-f7d3-4d29-becf-ed5a7adc4639", "status": "InProgress", "startTime": null, "endTime": null, @@ -437,38 +629,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9f7810f4a2fe5d439b63f288caf92ac5-62e164b226fabc46-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1b715443d88d8e823752d45a3270b583", + "traceparent": "00-5e58e786126b9beacbeab74e8aa6cf5a-de8867da723f641e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a20fee9bd4fa2b4f03d77f5f7ab71841", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "1b715443d88d8e823752d45a3270b583", + "client-request-id": "a20fee9bd4fa2b4f03d77f5f7ab71841", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:08:22 GMT", + "Date": "Wed, 26 Oct 2022 06:52:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cacdc54f-ffcd-4ac4-9ca4-5313fa875a8c", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "821abd10-162e-47df-8287-d9e9c469fc71", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T050823Z:cacdc54f-ffcd-4ac4-9ca4-5313fa875a8c", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "898854dd-5674-402e-800a-de383f0f9a18", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "c6881d21-53b6-4e4f-a999-093c70a7e4a0", + "x-ms-routing-request-id": "WESTUS2:20221026T065227Z:898854dd-5674-402e-800a-de383f0f9a18", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045", - "name": "39452148-f5d1-4562-aade-5630e50d6045", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639", + "name": "72bcfad2-f7d3-4d29-becf-ed5a7adc4639", "status": "InProgress", "startTime": null, "endTime": null, @@ -478,38 +670,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9f7810f4a2fe5d439b63f288caf92ac5-a55ca2d96ccf064f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a190b99d5bffc5cef814110db08a57e5", + "traceparent": "00-5e58e786126b9beacbeab74e8aa6cf5a-3c89a29293fb0db3-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "fae89d67b0840511773dd29cfe048c1b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "a190b99d5bffc5cef814110db08a57e5", + "client-request-id": "fae89d67b0840511773dd29cfe048c1b", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:08:38 GMT", + "Date": "Wed, 26 Oct 2022 06:52:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7073f9ba-f776-42c3-9aef-06370753cdcd", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "200e91a7-e192-4f5f-869a-8acaef072eb9", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T050839Z:7073f9ba-f776-42c3-9aef-06370753cdcd", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "e92eb970-a4a1-4155-a59f-0ee07f5d92dc", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "79fe3ac3-e77a-4e72-a35d-cfa68b64e258", + "x-ms-routing-request-id": "WESTUS2:20221026T065259Z:e92eb970-a4a1-4155-a59f-0ee07f5d92dc", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045", - "name": "39452148-f5d1-4562-aade-5630e50d6045", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639", + "name": "72bcfad2-f7d3-4d29-becf-ed5a7adc4639", "status": "InProgress", "startTime": null, "endTime": null, @@ -519,38 +711,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9f7810f4a2fe5d439b63f288caf92ac5-add80831d7158f43-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "810ab710fd66af130850510970cfbd5e", + "traceparent": "00-5e58e786126b9beacbeab74e8aa6cf5a-6a9b5f75ca584023-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5778abf6f13aa5a118bff463f8c74e63", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "810ab710fd66af130850510970cfbd5e", + "client-request-id": "5778abf6f13aa5a118bff463f8c74e63", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:09:12 GMT", + "Date": "Wed, 26 Oct 2022 06:53:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f9dc9613-2baa-4c8a-823e-951cba711bb2", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "ed49c7ec-edf0-4a94-9963-3eeeee111541", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T050912Z:f9dc9613-2baa-4c8a-823e-951cba711bb2", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "be419edc-a615-4e70-9c37-da078683eb08", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "d031579b-a307-489f-8f5f-ba752fce396e", + "x-ms-routing-request-id": "WESTUS2:20221026T065331Z:be419edc-a615-4e70-9c37-da078683eb08", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045", - "name": "39452148-f5d1-4562-aade-5630e50d6045", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639", + "name": "72bcfad2-f7d3-4d29-becf-ed5a7adc4639", "status": "InProgress", "startTime": null, "endTime": null, @@ -560,38 +752,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9f7810f4a2fe5d439b63f288caf92ac5-541ff7d09a282548-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e070d86e7456e88686ab2278c775ddad", + "traceparent": "00-5e58e786126b9beacbeab74e8aa6cf5a-010f2c02e3c8d1a7-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e4627fd7d93bea9cdc092abd01b22dfe", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "e070d86e7456e88686ab2278c775ddad", + "client-request-id": "e4627fd7d93bea9cdc092abd01b22dfe", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:09:44 GMT", + "Date": "Wed, 26 Oct 2022 06:54:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c773e9db-04a5-44cd-a999-ba59e6069d46", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "0c90958f-bbcc-4531-8258-2aa4eec9daed", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T050944Z:c773e9db-04a5-44cd-a999-ba59e6069d46", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "f283012d-afd7-4dcd-8457-234846606f64", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "4839499d-c67d-47ba-8199-27fccf6c18e5", + "x-ms-routing-request-id": "WESTUS2:20221026T065403Z:f283012d-afd7-4dcd-8457-234846606f64", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045", - "name": "39452148-f5d1-4562-aade-5630e50d6045", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639", + "name": "72bcfad2-f7d3-4d29-becf-ed5a7adc4639", "status": "InProgress", "startTime": null, "endTime": null, @@ -601,38 +793,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9f7810f4a2fe5d439b63f288caf92ac5-cde9632f620ded4f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "7a49eefa33669f1da5e198af0ac45529", + "traceparent": "00-5e58e786126b9beacbeab74e8aa6cf5a-ef49f8aefe09ed84-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ce68634bc03e7607fc42e1c4bcae0db0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "7a49eefa33669f1da5e198af0ac45529", + "client-request-id": "ce68634bc03e7607fc42e1c4bcae0db0", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:10:16 GMT", + "Date": "Wed, 26 Oct 2022 06:54:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cc63eafd-8b44-4ec3-aa93-6ac4909eca23", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "b42fc2a6-a98f-4982-80d5-15f54fb10c13", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T051017Z:cc63eafd-8b44-4ec3-aa93-6ac4909eca23", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "43941266-1df1-45f2-b4fe-c86a87ff4ddc", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "9e0a3a1c-102f-49c5-8d93-cd51426f3db7", + "x-ms-routing-request-id": "WESTUS2:20221026T065436Z:43941266-1df1-45f2-b4fe-c86a87ff4ddc", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045", - "name": "39452148-f5d1-4562-aade-5630e50d6045", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639", + "name": "72bcfad2-f7d3-4d29-becf-ed5a7adc4639", "status": "InProgress", "startTime": null, "endTime": null, @@ -642,38 +834,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9f7810f4a2fe5d439b63f288caf92ac5-5c972a5fdbcc0042-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d79fb25776199c8e3121fabadb9be793", + "traceparent": "00-5e58e786126b9beacbeab74e8aa6cf5a-14d3788bccfaa3e9-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7ec56feea7a21ce00f8e7b31c6e3a365", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "d79fb25776199c8e3121fabadb9be793", + "client-request-id": "7ec56feea7a21ce00f8e7b31c6e3a365", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:10:49 GMT", + "Date": "Wed, 26 Oct 2022 06:55:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a95d273f-c666-4288-9a87-0a2080568476", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "f412564b-f897-4afb-a86d-d39d5c95c4c8", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T051049Z:a95d273f-c666-4288-9a87-0a2080568476", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "b5397829-f841-49e8-ab6b-f0951298ffde", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "8a0de22f-43f3-4542-8b25-2555c9727141", + "x-ms-routing-request-id": "WESTUS2:20221026T065508Z:b5397829-f841-49e8-ab6b-f0951298ffde", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045", - "name": "39452148-f5d1-4562-aade-5630e50d6045", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639", + "name": "72bcfad2-f7d3-4d29-becf-ed5a7adc4639", "status": "InProgress", "startTime": null, "endTime": null, @@ -683,38 +875,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9f7810f4a2fe5d439b63f288caf92ac5-7bed2575eb7c6340-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "810fa47342853af8bbd03a75dbd7dec2", + "traceparent": "00-5e58e786126b9beacbeab74e8aa6cf5a-d14e7a09f96c7be1-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "9418f592805e172578ebe8f8f8d72d2e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "810fa47342853af8bbd03a75dbd7dec2", + "client-request-id": "9418f592805e172578ebe8f8f8d72d2e", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:11:21 GMT", + "Date": "Wed, 26 Oct 2022 06:55:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "887d5206-5391-435a-9d95-560726f4891b", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "03ec66f6-f001-4ed2-9962-0a007ec9eb80", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T051122Z:887d5206-5391-435a-9d95-560726f4891b", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "ceae5b76-a6ff-47ea-9098-f006ea044c7e", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "28317d35-dffb-4595-a9e3-44b39e84974b", + "x-ms-routing-request-id": "WESTUS2:20221026T065540Z:ceae5b76-a6ff-47ea-9098-f006ea044c7e", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045", - "name": "39452148-f5d1-4562-aade-5630e50d6045", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639", + "name": "72bcfad2-f7d3-4d29-becf-ed5a7adc4639", "status": "InProgress", "startTime": null, "endTime": null, @@ -724,38 +916,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9f7810f4a2fe5d439b63f288caf92ac5-6b2420386811ed4f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1420f85605d683935fac49443962c40a", + "traceparent": "00-5e58e786126b9beacbeab74e8aa6cf5a-5fc2f44c0ac1c041-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "92cf7afcaeeda35c834bbfaf45d6af19", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "1420f85605d683935fac49443962c40a", + "client-request-id": "92cf7afcaeeda35c834bbfaf45d6af19", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:11:53 GMT", + "Date": "Wed, 26 Oct 2022 06:56:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4faf274e-a8fc-484e-84ed-2fd98cc3819d", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "0b7427ff-53a0-42e6-88da-cb4a8113b1ae", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T051154Z:4faf274e-a8fc-484e-84ed-2fd98cc3819d", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "4a7fa692-bcd4-442d-8e42-7ad025d10d02", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "b7717826-cebd-4d58-8757-ee68e0e18f35", + "x-ms-routing-request-id": "WESTUS2:20221026T065612Z:4a7fa692-bcd4-442d-8e42-7ad025d10d02", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045", - "name": "39452148-f5d1-4562-aade-5630e50d6045", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639", + "name": "72bcfad2-f7d3-4d29-becf-ed5a7adc4639", "status": "InProgress", "startTime": null, "endTime": null, @@ -765,38 +957,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9f7810f4a2fe5d439b63f288caf92ac5-c2f9ca030da2e04b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "663c05f9d3b415a3b9641c493c19c059", + "traceparent": "00-5e58e786126b9beacbeab74e8aa6cf5a-39bc9e414d190353-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c7327b9f78956e524aae05b6bfe82437", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "663c05f9d3b415a3b9641c493c19c059", + "client-request-id": "c7327b9f78956e524aae05b6bfe82437", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:12:26 GMT", + "Date": "Wed, 26 Oct 2022 06:56:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f3047852-d930-4cfd-b6ce-241a0c7ad4b5", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "cbf67c2e-3179-4dd1-9477-440e68aa5456", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T051226Z:f3047852-d930-4cfd-b6ce-241a0c7ad4b5", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "6210abb2-e037-4c6c-bfdb-6f3f892eb6d1", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "9126b6c1-6c35-4aba-adc9-c4038d41be26", + "x-ms-routing-request-id": "WESTUS2:20221026T065644Z:6210abb2-e037-4c6c-bfdb-6f3f892eb6d1", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045", - "name": "39452148-f5d1-4562-aade-5630e50d6045", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639", + "name": "72bcfad2-f7d3-4d29-becf-ed5a7adc4639", "status": "InProgress", "startTime": null, "endTime": null, @@ -806,38 +998,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9f7810f4a2fe5d439b63f288caf92ac5-444e320cc0214e4b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e2633843d37a6dbd108c21d9f9b40158", + "traceparent": "00-5e58e786126b9beacbeab74e8aa6cf5a-9358f0ad81edd300-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4c344c601114e47898741113c075d1a2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "e2633843d37a6dbd108c21d9f9b40158", + "client-request-id": "4c344c601114e47898741113c075d1a2", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:12:59 GMT", + "Date": "Wed, 26 Oct 2022 06:57:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "09e3865f-9dfa-48b4-b324-8709cdecdfaf", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "9aa07d9f-0823-47aa-be51-5ac994dc96fe", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T051259Z:09e3865f-9dfa-48b4-b324-8709cdecdfaf", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "69423a6b-ec4a-415a-80c4-e4e8cca8cf02", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "d542e86a-b908-44eb-8733-73512c86c8e9", + "x-ms-routing-request-id": "WESTUS2:20221026T065716Z:69423a6b-ec4a-415a-80c4-e4e8cca8cf02", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045", - "name": "39452148-f5d1-4562-aade-5630e50d6045", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639", + "name": "72bcfad2-f7d3-4d29-becf-ed5a7adc4639", "status": "InProgress", "startTime": null, "endTime": null, @@ -847,38 +1039,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9f7810f4a2fe5d439b63f288caf92ac5-16e0cbf75888444b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d67b300c789b830d540b5a71e84a4746", + "traceparent": "00-5e58e786126b9beacbeab74e8aa6cf5a-ad18ec79c3fe4779-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7c58ce3c66a583982760473fa8a6e49b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "d67b300c789b830d540b5a71e84a4746", + "client-request-id": "7c58ce3c66a583982760473fa8a6e49b", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:13:31 GMT", + "Date": "Wed, 26 Oct 2022 06:57:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c46ce04e-0840-40dc-aacc-311c319476a0", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "049aa9c9-029e-439f-ab5c-ceeec5328214", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T051331Z:c46ce04e-0840-40dc-aacc-311c319476a0", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "a63559b2-37ac-49cf-a25e-aaaf50365bfe", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "e055a212-4141-45ee-8065-872b585e9cba", + "x-ms-routing-request-id": "WESTUS2:20221026T065748Z:a63559b2-37ac-49cf-a25e-aaaf50365bfe", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045", - "name": "39452148-f5d1-4562-aade-5630e50d6045", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639", + "name": "72bcfad2-f7d3-4d29-becf-ed5a7adc4639", "status": "InProgress", "startTime": null, "endTime": null, @@ -888,38 +1080,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9f7810f4a2fe5d439b63f288caf92ac5-6589b81db5557c42-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0000efece1fe268f48ce5528b1ca1b05", + "traceparent": "00-5e58e786126b9beacbeab74e8aa6cf5a-266b0a93e85f2223-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f94f882763a18d04034e2e21673fadd4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "0000efece1fe268f48ce5528b1ca1b05", + "client-request-id": "f94f882763a18d04034e2e21673fadd4", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:14:03 GMT", + "Date": "Wed, 26 Oct 2022 06:58:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6249f82a-6dc1-4f15-a808-6407d3333207", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "7d3350e6-e071-455d-b5e6-98ee480ff49d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T051403Z:6249f82a-6dc1-4f15-a808-6407d3333207", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "d205dc76-82cf-485e-8e3d-71bf128d81dc", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "80461cc6-87b9-45b8-8b47-2259bbc1fa35", + "x-ms-routing-request-id": "WESTUS2:20221026T065820Z:d205dc76-82cf-485e-8e3d-71bf128d81dc", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045", - "name": "39452148-f5d1-4562-aade-5630e50d6045", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639", + "name": "72bcfad2-f7d3-4d29-becf-ed5a7adc4639", "status": "InProgress", "startTime": null, "endTime": null, @@ -929,38 +1121,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9f7810f4a2fe5d439b63f288caf92ac5-2e1f5a2bf2372149-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0b3cc362ea9dcbbe2ae08d6f784b84c6", + "traceparent": "00-5e58e786126b9beacbeab74e8aa6cf5a-713373a8b3c3cbda-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f07a63dca78ffa91b4b124b3c9383bf2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "0b3cc362ea9dcbbe2ae08d6f784b84c6", + "client-request-id": "f07a63dca78ffa91b4b124b3c9383bf2", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:14:35 GMT", + "Date": "Wed, 26 Oct 2022 06:58:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "472e782f-f65b-49b4-bef5-ad5235b0d5cb", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "3cc7748c-ffe8-4383-bfbc-28fd34678f9f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T051436Z:472e782f-f65b-49b4-bef5-ad5235b0d5cb", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "6d136c79-384c-4cfc-b582-d051576ebdb5", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "c71f0101-2601-48a3-8854-b7280282dd35", + "x-ms-routing-request-id": "WESTUS2:20221026T065853Z:6d136c79-384c-4cfc-b582-d051576ebdb5", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045", - "name": "39452148-f5d1-4562-aade-5630e50d6045", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639", + "name": "72bcfad2-f7d3-4d29-becf-ed5a7adc4639", "status": "InProgress", "startTime": null, "endTime": null, @@ -970,38 +1162,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9f7810f4a2fe5d439b63f288caf92ac5-cd05b9ee885f3f47-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "09ecdb4400b42b59a0558dcc22e4d18a", + "traceparent": "00-5e58e786126b9beacbeab74e8aa6cf5a-de42f6a3ffad05ae-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "38eb7690d826d800caca795737771ce8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "09ecdb4400b42b59a0558dcc22e4d18a", + "client-request-id": "38eb7690d826d800caca795737771ce8", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:15:09 GMT", + "Date": "Wed, 26 Oct 2022 06:59:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a2964e58-ebd6-4635-8097-4061f5d5628a", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "55cb7214-7786-4ed6-ae79-9fe741bd7c10", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T051509Z:a2964e58-ebd6-4635-8097-4061f5d5628a", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "e259af43-f8eb-42d3-b307-533dd94c9d0d", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "737dd458-3e47-4764-a6ef-114974e19545", + "x-ms-routing-request-id": "WESTUS2:20221026T065925Z:e259af43-f8eb-42d3-b307-533dd94c9d0d", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045", - "name": "39452148-f5d1-4562-aade-5630e50d6045", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639", + "name": "72bcfad2-f7d3-4d29-becf-ed5a7adc4639", "status": "InProgress", "startTime": null, "endTime": null, @@ -1011,38 +1203,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9f7810f4a2fe5d439b63f288caf92ac5-34bcbc1f8ce02c42-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "250f55ef3b0d02a83034d61d531faefd", + "traceparent": "00-5e58e786126b9beacbeab74e8aa6cf5a-a06ecc5f0f00e682-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "456273b3f32c7f0bf65445ef3e51c4ca", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "250f55ef3b0d02a83034d61d531faefd", + "client-request-id": "456273b3f32c7f0bf65445ef3e51c4ca", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:15:41 GMT", + "Date": "Wed, 26 Oct 2022 06:59:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ede4f26e-5a92-4dee-a6db-736a6f0cf097", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "3ad3cc5f-546a-4a94-9bf5-06fec679727f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T051541Z:ede4f26e-5a92-4dee-a6db-736a6f0cf097", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "18524832-fb71-4412-a016-258a3cd212e6", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "e1560677-2aed-4b7d-8af4-78efaf2aa522", + "x-ms-routing-request-id": "WESTUS2:20221026T065957Z:18524832-fb71-4412-a016-258a3cd212e6", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045", - "name": "39452148-f5d1-4562-aade-5630e50d6045", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639", + "name": "72bcfad2-f7d3-4d29-becf-ed5a7adc4639", "status": "InProgress", "startTime": null, "endTime": null, @@ -1052,38 +1244,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9f7810f4a2fe5d439b63f288caf92ac5-b219055c03f94d40-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d6e48e4912de625069116b475cf2a845", + "traceparent": "00-5e58e786126b9beacbeab74e8aa6cf5a-b0fc4ba322334bfd-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f1913c12745304ae62a126c42d3ac33c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "d6e48e4912de625069116b475cf2a845", + "client-request-id": "f1913c12745304ae62a126c42d3ac33c", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:16:13 GMT", + "Date": "Wed, 26 Oct 2022 07:00:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "124c3d14-808d-4160-b638-efc2d3e3a560", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "cf10efa4-e22b-4144-8c88-5ef51fdf1c28", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T051614Z:124c3d14-808d-4160-b638-efc2d3e3a560", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "bc093580-b15e-4a3f-a277-d5e6551090b7", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "e52acd65-520e-4975-a261-b2e780e7ad8d", + "x-ms-routing-request-id": "WESTUS2:20221026T070029Z:bc093580-b15e-4a3f-a277-d5e6551090b7", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045", - "name": "39452148-f5d1-4562-aade-5630e50d6045", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639", + "name": "72bcfad2-f7d3-4d29-becf-ed5a7adc4639", "status": "InProgress", "startTime": null, "endTime": null, @@ -1093,38 +1285,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9f7810f4a2fe5d439b63f288caf92ac5-cb04fe5315ad8943-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "2280030f5f3c09b932ead97f2a3cd780", + "traceparent": "00-5e58e786126b9beacbeab74e8aa6cf5a-17292fab6d39b76b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "56003b95f6d69cc56a6c42d293119978", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "2280030f5f3c09b932ead97f2a3cd780", + "client-request-id": "56003b95f6d69cc56a6c42d293119978", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:16:46 GMT", + "Date": "Wed, 26 Oct 2022 07:01:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1ab87e9c-e4cb-4225-a269-85ec52e84b27", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "979ec06e-6421-43de-b76c-fb1e7fa81503", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T051646Z:1ab87e9c-e4cb-4225-a269-85ec52e84b27", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "8887a52d-62a3-453e-936b-f8dc0fc3e131", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "0de45a8c-bf8e-4f97-a727-ad1f9102ee37", + "x-ms-routing-request-id": "WESTUS2:20221026T070101Z:8887a52d-62a3-453e-936b-f8dc0fc3e131", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045", - "name": "39452148-f5d1-4562-aade-5630e50d6045", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639", + "name": "72bcfad2-f7d3-4d29-becf-ed5a7adc4639", "status": "InProgress", "startTime": null, "endTime": null, @@ -1134,38 +1326,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9f7810f4a2fe5d439b63f288caf92ac5-772a2516f0297b48-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "948390a7fb00ddab04adbbfbd060a63e", + "traceparent": "00-5e58e786126b9beacbeab74e8aa6cf5a-27bf8f7287be38db-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "fa44af062ae53e95c45ee28bcc4751bc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "948390a7fb00ddab04adbbfbd060a63e", + "client-request-id": "fa44af062ae53e95c45ee28bcc4751bc", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:17:18 GMT", + "Date": "Wed, 26 Oct 2022 07:01:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "850c73b2-b5e7-4bd3-a379-e5a2bdd4f0ea", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "8c3ba08e-f433-4264-9156-91d95a32a9ce", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T051719Z:850c73b2-b5e7-4bd3-a379-e5a2bdd4f0ea", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "5062f0d0-f6e3-4141-a073-c8e04c2c9e1a", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "d0f8f2e6-4881-4e83-b9a7-a65b7a12f360", + "x-ms-routing-request-id": "WESTUS2:20221026T070133Z:5062f0d0-f6e3-4141-a073-c8e04c2c9e1a", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045", - "name": "39452148-f5d1-4562-aade-5630e50d6045", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639", + "name": "72bcfad2-f7d3-4d29-becf-ed5a7adc4639", "status": "InProgress", "startTime": null, "endTime": null, @@ -1175,38 +1367,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9f7810f4a2fe5d439b63f288caf92ac5-a7b3b691fa96d34f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4f0e908b8b9fe9c1d5dba3f438d1372d", + "traceparent": "00-5e58e786126b9beacbeab74e8aa6cf5a-c2ed2f3d1c249c39-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "025a08906e511cf477f487e732dc7151", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "4f0e908b8b9fe9c1d5dba3f438d1372d", + "client-request-id": "025a08906e511cf477f487e732dc7151", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:17:51 GMT", + "Date": "Wed, 26 Oct 2022 07:02:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2493197c-78a5-438a-91aa-081a9204d975", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "3797c496-91a3-478b-97c3-e22010b31df9", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T051751Z:2493197c-78a5-438a-91aa-081a9204d975", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "334b1ff4-59cb-4449-929c-5ce82c8c85c5", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "165cfeae-be34-407f-8b0d-49380d81a05d", + "x-ms-routing-request-id": "WESTUS2:20221026T070205Z:334b1ff4-59cb-4449-929c-5ce82c8c85c5", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045", - "name": "39452148-f5d1-4562-aade-5630e50d6045", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639", + "name": "72bcfad2-f7d3-4d29-becf-ed5a7adc4639", "status": "InProgress", "startTime": null, "endTime": null, @@ -1216,38 +1408,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9f7810f4a2fe5d439b63f288caf92ac5-e46330072f619647-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "cca0eb3a146e144457a31d8ea4bd39d2", + "traceparent": "00-5e58e786126b9beacbeab74e8aa6cf5a-bb182f214b1f9517-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7ebeae07c9f56a56a6c19177133acf23", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "cca0eb3a146e144457a31d8ea4bd39d2", + "client-request-id": "7ebeae07c9f56a56a6c19177133acf23", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:18:23 GMT", + "Date": "Wed, 26 Oct 2022 07:02:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "881576ec-8a8e-4fb0-ae78-b5f1622558b0", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "0512c986-8391-4c52-9ee1-d490e7921067", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T051823Z:881576ec-8a8e-4fb0-ae78-b5f1622558b0", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "bc0463b2-7aa5-473f-b1c6-b33e40e04829", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "7fb42279-fec9-44df-a988-ace97863fbe2", + "x-ms-routing-request-id": "WESTUS2:20221026T070238Z:bc0463b2-7aa5-473f-b1c6-b33e40e04829", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045", - "name": "39452148-f5d1-4562-aade-5630e50d6045", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639", + "name": "72bcfad2-f7d3-4d29-becf-ed5a7adc4639", "status": "InProgress", "startTime": null, "endTime": null, @@ -1257,38 +1449,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9f7810f4a2fe5d439b63f288caf92ac5-fa3ee7a6af12504e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "99f39a44872d1be1cf99be2557b7a433", + "traceparent": "00-5e58e786126b9beacbeab74e8aa6cf5a-6ba79cf28876d70f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "8b41861a97b69827bb2883f0a3ae0be8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "99f39a44872d1be1cf99be2557b7a433", + "client-request-id": "8b41861a97b69827bb2883f0a3ae0be8", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:18:55 GMT", + "Date": "Wed, 26 Oct 2022 07:03:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "34705c28-bde2-4b1b-bccc-d0e949c55631", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "5187eaa4-7645-4bdc-952e-6bc011e5d9c7", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T051856Z:34705c28-bde2-4b1b-bccc-d0e949c55631", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "68f9f24b-4565-4099-8954-84474feaa197", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "797f2a39-213c-4e7b-8103-42ff36edf7ad", + "x-ms-routing-request-id": "WESTUS2:20221026T070310Z:68f9f24b-4565-4099-8954-84474feaa197", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045", - "name": "39452148-f5d1-4562-aade-5630e50d6045", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639", + "name": "72bcfad2-f7d3-4d29-becf-ed5a7adc4639", "status": "InProgress", "startTime": null, "endTime": null, @@ -1298,38 +1490,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9f7810f4a2fe5d439b63f288caf92ac5-ee0f703e70d1534b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e4c18d75dac077cf4bf9f8fb6e324517", + "traceparent": "00-5e58e786126b9beacbeab74e8aa6cf5a-92c37e1eee4c1850-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1e8390edd389c7c6b1f05c8fdc7c083c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "e4c18d75dac077cf4bf9f8fb6e324517", + "client-request-id": "1e8390edd389c7c6b1f05c8fdc7c083c", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:19:28 GMT", + "Date": "Wed, 26 Oct 2022 07:03:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3a45077b-d421-47d6-950f-235fced8a21f", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "9ab162ef-60e1-4856-b9c6-e275e6ff57a6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T051928Z:3a45077b-d421-47d6-950f-235fced8a21f", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "0a7b8f19-b3af-4cde-ad8b-845770a2e527", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "03e156b3-9849-4c09-81ff-9ad14d5b92e4", + "x-ms-routing-request-id": "WESTUS2:20221026T070342Z:0a7b8f19-b3af-4cde-ad8b-845770a2e527", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045", - "name": "39452148-f5d1-4562-aade-5630e50d6045", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639", + "name": "72bcfad2-f7d3-4d29-becf-ed5a7adc4639", "status": "InProgress", "startTime": null, "endTime": null, @@ -1339,38 +1531,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9f7810f4a2fe5d439b63f288caf92ac5-9ba44a35c9e8c54a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9eb0d1a19edeb2ff0984fdd5551fbca0", + "traceparent": "00-5e58e786126b9beacbeab74e8aa6cf5a-bab314dd34e45424-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "accc6325e69b709b8625c3cd4666c6f7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "9eb0d1a19edeb2ff0984fdd5551fbca0", + "client-request-id": "accc6325e69b709b8625c3cd4666c6f7", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:20:00 GMT", + "Date": "Wed, 26 Oct 2022 07:04:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9f1b2e8e-5b04-469f-903b-698c9ccb39bf", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "f5542db4-56f5-4c39-a415-d960bc5a8321", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T052000Z:9f1b2e8e-5b04-469f-903b-698c9ccb39bf", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "27400702-45d6-4b6e-9da4-7e22a283b008", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "52fdc425-3837-41fc-8a6b-3ee7b886beb4", + "x-ms-routing-request-id": "WESTUS2:20221026T070415Z:27400702-45d6-4b6e-9da4-7e22a283b008", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045", - "name": "39452148-f5d1-4562-aade-5630e50d6045", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639", + "name": "72bcfad2-f7d3-4d29-becf-ed5a7adc4639", "status": "InProgress", "startTime": null, "endTime": null, @@ -1380,38 +1572,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9f7810f4a2fe5d439b63f288caf92ac5-869f2206885a024e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1619e9ff54fc6a11ca7c4d348fe5ad9c", + "traceparent": "00-5e58e786126b9beacbeab74e8aa6cf5a-c63c40867860df51-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "838aa9b5b1b6469abf7ad9c63a98bb3f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "1619e9ff54fc6a11ca7c4d348fe5ad9c", + "client-request-id": "838aa9b5b1b6469abf7ad9c63a98bb3f", "Content-Length": "352", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:20:32 GMT", + "Date": "Wed, 26 Oct 2022 07:04:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "831bfeae-b97b-40d7-b82e-12e422f2e22c", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "4067b159-aa24-45fb-bd9d-92aa53f20eb3", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T052033Z:831bfeae-b97b-40d7-b82e-12e422f2e22c", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "f59fba31-76ed-4be4-9bb5-acf07b630b6f", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "06b37843-8cf4-40d6-bee4-f216f1a2dcc4", + "x-ms-routing-request-id": "WESTUS2:20221026T070447Z:f59fba31-76ed-4be4-9bb5-acf07b630b6f", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/39452148-f5d1-4562-aade-5630e50d6045", - "name": "39452148-f5d1-4562-aade-5630e50d6045", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/72bcfad2-f7d3-4d29-becf-ed5a7adc4639", + "name": "72bcfad2-f7d3-4d29-becf-ed5a7adc4639", "status": "Succeeded", "startTime": null, "endTime": null, @@ -1421,43 +1613,43 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-6742/providers/Microsoft.Cache/redis/RedisBegin4410?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4660/providers/Microsoft.Cache/redis/RedisBegin8389?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9f7810f4a2fe5d439b63f288caf92ac5-f08198b7b8477042-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "8683a7530507d7558d0edb3bdcfa212c", + "traceparent": "00-5e58e786126b9beacbeab74e8aa6cf5a-5fe3954c0333c82b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3fcb461f5fe1074df513986310f9804b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "8683a7530507d7558d0edb3bdcfa212c", - "Content-Length": "767", + "client-request-id": "3fcb461f5fe1074df513986310f9804b", + "Content-Length": "764", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 05:20:33 GMT", + "Date": "Wed, 26 Oct 2022 07:04:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a851c300-2a08-404f-9520-b64bcdd76c1d", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "fecbe57c-ce73-4468-988f-0587090afea7", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T052033Z:a851c300-2a08-404f-9520-b64bcdd76c1d", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "e40130db-7dfc-40e1-809b-8b9f0d72cfb3", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "b3b36067-cc62-41db-937d-897cd7432647", + "x-ms-routing-request-id": "WESTUS2:20221026T070447Z:e40130db-7dfc-40e1-809b-8b9f0d72cfb3", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-6742/providers/Microsoft.Cache/Redis/RedisBegin4410", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4660/providers/Microsoft.Cache/Redis/RedisBegin8389", "location": "East US", - "name": "RedisBegin4410", + "name": "RedisBegin8389", "type": "Microsoft.Cache/Redis", "tags": {}, "properties": { "provisioningState": "Succeeded", - "redisVersion": "4.0.14", + "redisVersion": "6.0", "sku": { "name": "Premium", "family": "P", @@ -1484,7 +1676,7 @@ "maxmemory-delta": "642" }, "accessKeys": null, - "hostName": "RedisBegin4410.redis.cache.windows.net", + "hostName": "RedisBegin8389.redis.cache.windows.net", "port": 6379, "sslPort": 6380, "linkedServers": [] @@ -1492,46 +1684,46 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-6742/providers/Microsoft.Cache/redis?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4660/providers/Microsoft.Cache/redis?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-8f887f8db6846947b59ebeec492cf1e2-98b91c4b90b1c04a-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "84fb583c2e194d1abf46d36150cb2323", + "traceparent": "00-0454033db156d97f991aa28cfa3fbfe6-09782d1bcd3d158e-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "33d9652985f17485c986ec210cd435ed", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "84fb583c2e194d1abf46d36150cb2323", - "Content-Length": "779", + "client-request-id": "33d9652985f17485c986ec210cd435ed", + "Content-Length": "776", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 05:20:33 GMT", + "Date": "Wed, 26 Oct 2022 07:04:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "93dea171-0f8c-46e4-b744-d8c121c6c969", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "ef0228a9-5eeb-4286-9ec9-c55efcc3770f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T052034Z:93dea171-0f8c-46e4-b744-d8c121c6c969", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "68d5b625-76a8-4bf9-9316-13451d422575", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "b11e2925-09ce-4c5a-9878-bb2a8a946938", + "x-ms-routing-request-id": "WESTUS2:20221026T070447Z:68d5b625-76a8-4bf9-9316-13451d422575", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-6742/providers/Microsoft.Cache/Redis/RedisBegin4410", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4660/providers/Microsoft.Cache/Redis/RedisBegin8389", "location": "East US", - "name": "RedisBegin4410", + "name": "RedisBegin8389", "type": "Microsoft.Cache/Redis", "tags": {}, "properties": { "provisioningState": "Succeeded", - "redisVersion": "4.0.14", + "redisVersion": "6.0", "sku": { "name": "Premium", "family": "P", @@ -1558,7 +1750,7 @@ "maxmemory-delta": "642" }, "accessKeys": null, - "hostName": "RedisBegin4410.redis.cache.windows.net", + "hostName": "RedisBegin8389.redis.cache.windows.net", "port": 6379, "sslPort": 6380, "linkedServers": [] @@ -1568,46 +1760,46 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/redis?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/redis?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-6cd6fff506394a448af2bad97d926b01-42e83e223da0364e-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ae8260d7369bf998944189ed78d58dd0", + "traceparent": "00-bb863340852120b0e1ead74fd9347b6e-0de5b5a2d28ac2df-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ffad836a869a56155c838ea3183736c6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "ae8260d7369bf998944189ed78d58dd0", - "Content-Length": "779", + "client-request-id": "ffad836a869a56155c838ea3183736c6", + "Content-Length": "776", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 05:20:34 GMT", + "Date": "Wed, 26 Oct 2022 07:04:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f4cbb711-8997-4a7c-a264-39c243f42473", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-request-id": "9aac1db4-f499-41c1-b6f2-886995f7d013", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T052034Z:f4cbb711-8997-4a7c-a264-39c243f42473", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "a5844804-458a-49bb-8102-26171a0b56ec", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "d569faaa-f69a-4e84-9de2-bb01f0f9a1da", + "x-ms-routing-request-id": "WESTUS2:20221026T070448Z:a5844804-458a-49bb-8102-26171a0b56ec", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-6742/providers/Microsoft.Cache/Redis/RedisBegin4410", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4660/providers/Microsoft.Cache/Redis/RedisBegin8389", "location": "East US", - "name": "RedisBegin4410", + "name": "RedisBegin8389", "type": "Microsoft.Cache/Redis", "tags": {}, "properties": { "provisioningState": "Succeeded", - "redisVersion": "4.0.14", + "redisVersion": "6.0", "sku": { "name": "Premium", "family": "P", @@ -1634,7 +1826,7 @@ "maxmemory-delta": "642" }, "accessKeys": null, - "hostName": "RedisBegin4410.redis.cache.windows.net", + "hostName": "RedisBegin8389.redis.cache.windows.net", "port": 6379, "sslPort": 6380, "linkedServers": [] @@ -1644,52 +1836,52 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-6742/providers/Microsoft.Cache/redis/RedisBegin4410/listKeys?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4660/providers/Microsoft.Cache/redis/RedisBegin8389/listKeys?api-version=2022-06-01", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "0", - "traceparent": "00-37235213757c9b48b54ee4c498e5a77b-669fdc8efd2bc842-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "37f7215a28e924838c36c7c131f387c1", + "traceparent": "00-1ba51b1ad33d632248807bd2d661a4ea-87b52a202ba1a7b2-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d49d8ef988bf9a4dc057765b732cfb20", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "37f7215a28e924838c36c7c131f387c1", + "client-request-id": "d49d8ef988bf9a4dc057765b732cfb20", "Content-Length": "53", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 05:20:34 GMT", + "Date": "Wed, 26 Oct 2022 07:04:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b8c282ae-5958-460a-ba5b-735354659d53", + "x-ms-correlation-request-id": "85ab22a4-0fc6-44f1-9eca-1e62f7e48bb8", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "ce93a18f-f6e8-4413-87d4-aefe49b73e22", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T052035Z:b8c282ae-5958-460a-ba5b-735354659d53", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "ce12d02b-70f0-44e8-bf90-2a2ed2b7bca4", + "x-ms-routing-request-id": "WESTUS2:20221026T070448Z:85ab22a4-0fc6-44f1-9eca-1e62f7e48bb8", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "primaryKey": "Sanitized", - "secondaryKey": "Sanitized" + "primaryKey": "Sanitized1", + "secondaryKey": "Sanitized1" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-6742/providers/Microsoft.Cache/redis/RedisBegin4410/regenerateKey?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-4660/providers/Microsoft.Cache/redis/RedisBegin8389/regenerateKey?api-version=2022-06-01", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-9598638698e0e9478fc596c6a7ce63ac-e53718aa353ed74f-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "7c64b7eb73770691bf02f0d7a52cd4e9", + "traceparent": "00-f31678e2063cbd837c7e74a5cc4c2a67-528cb38c125c74aa-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "8cf8aadd804ba2b04f83d66ef7e15b92", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -1698,31 +1890,31 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "7c64b7eb73770691bf02f0d7a52cd4e9", + "client-request-id": "8cf8aadd804ba2b04f83d66ef7e15b92", "Content-Length": "53", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 05:20:35 GMT", + "Date": "Wed, 26 Oct 2022 07:04:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "408c17ca-0f3d-4e04-88c3-ebe40580990d", + "x-ms-correlation-request-id": "7d8d9656-48e5-436e-a1f4-ad86484ba78e", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "697a0fac-6853-49a8-9edb-7fddd08e720f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T052036Z:408c17ca-0f3d-4e04-88c3-ebe40580990d", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-request-id": "d5f4c8e4-dd8a-4453-9969-dcd5994fa432", + "x-ms-routing-request-id": "WESTUS2:20221026T070448Z:7d8d9656-48e5-436e-a1f4-ad86484ba78e", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "primaryKey": "Sanitized", - "secondaryKey": "Sanitized" + "primaryKey": "Sanitized2", + "secondaryKey": "Sanitized2" } } ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "13778734", + "RandomSeed": "372899575", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + "SUBSCRIPTION_ID": "3919658b-68ae-4509-8c17-6a2238340ae7" } } diff --git a/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/GetListKeysFunctionalTests/CreateUpdateDeleteTestAsync.json b/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/GetListKeysFunctionalTests/CreateUpdateDeleteTestAsync.json index 2f7575878813..262767121030 100644 --- a/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/GetListKeysFunctionalTests/CreateUpdateDeleteTestAsync.json +++ b/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/GetListKeysFunctionalTests/CreateUpdateDeleteTestAsync.json @@ -1,52 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e2bb0ec64ea9204f85dd130382c4b104-76b63588a5ac544f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "43cca345285f2778c8b95402ce64ad2f", + "traceparent": "00-9dc9d829768b315d58dc836bdd77fa59-e4032d2742f235e8-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2868034571d5ca91d9e7972fcce2d35e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "747", + "Content-Length": "405", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 05:31:29 GMT", + "Date": "Wed, 26 Oct 2022 07:04:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "271c51e0-ed09-4ede-831d-7e1958e76606", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "271c51e0-ed09-4ede-831d-7e1958e76606", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T053129Z:271c51e0-ed09-4ede-831d-7e1958e76606" + "x-ms-correlation-request-id": "89325079-d360-4b76-9304-7e382012376d", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "89325079-d360-4b76-9304-7e382012376d", + "x-ms-routing-request-id": "WESTUS2:20221026T070450Z:89325079-d360-4b76-9304-7e382012376d" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7", "authorizationSource": "RoleBased", "managedByTenants": [], - "tags": { - "TagKey-9823": "TagValue-566", - "TagKey-3481": "TagValue-320", - "TagKey-4926": "TagValue-1187", - "TagKey-751": "TagValue-3921", - "TagKey-1866": "TagValue-8559", - "TagKey-3094": "TagValue-9190", - "TagKey-2449": "TagValue-9", - "TagKey-8379": "TagValue-164", - "TagKey-7470": "TagValue-2205", - "TagKey-4236": "TagValue-3698", - "TagKey-5316": "TagValue-2725" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "subscriptionId": "3919658b-68ae-4509-8c17-6a2238340ae7", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "displayName": "CacheTeam - Austin Tolani", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -56,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRG-6226?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/testRG-1936?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "43", "Content-Type": "application/json", - "traceparent": "00-c568af5a6e99c446a4e3351d142640ee-50411154f6a9a74a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "13f84879910ec521d9db89810d30eb76", + "traceparent": "00-635fc42f848b46c239350d6732233865-c307dbf98c26da65-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c9bd045b1a001ed5288fc631ff947b7a", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -79,19 +66,19 @@ "Cache-Control": "no-cache", "Content-Length": "241", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 05:31:33 GMT", + "Date": "Wed, 26 Oct 2022 07:04:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a2aee811-9e7d-4fc1-85eb-9c7321c0d359", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "a2aee811-9e7d-4fc1-85eb-9c7321c0d359", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T053134Z:a2aee811-9e7d-4fc1-85eb-9c7321c0d359" + "x-ms-correlation-request-id": "51e2b77e-dba1-4e7c-8a1c-af1af7cb15a0", + "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-request-id": "51e2b77e-dba1-4e7c-8a1c-af1af7cb15a0", + "x-ms-routing-request-id": "WESTUS2:20221026T070451Z:51e2b77e-dba1-4e7c-8a1c-af1af7cb15a0" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-6226", - "name": "testRG-6226", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-1936", + "name": "testRG-1936", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "tags": { @@ -103,16 +90,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-6226/providers/Microsoft.Cache/redis/RedisBegin6097?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-1936/providers/Microsoft.Cache/redis/RedisBegin1672?api-version=2022-06-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "87", "Content-Type": "application/json", - "traceparent": "00-e47017c10ccaa540be98b803bf87c75c-c76f5e7c8110434e-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0cdb97fe921871230e78a6fe95de48fa", + "traceparent": "00-6343ca216689d21fe90afe05c75679f2-cef2e93a22b5b5c0-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "41a8bb6e975b9d4268fba576ec9f19f2", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -127,33 +114,33 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "0cdb97fe921871230e78a6fe95de48fa", - "Content-Length": "817", + "client-request-id": "41a8bb6e975b9d4268fba576ec9f19f2", + "Content-Length": "814", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 05:31:40 GMT", + "Date": "Wed, 26 Oct 2022 07:04:56 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-6226/providers/Microsoft.Cache/redis/RedisBegin6097?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-1936/providers/Microsoft.Cache/redis/RedisBegin1672?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2f8fff90-9bf9-430e-a266-d3ca5fc61ae3", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "f4b7edb3-1645-4ac1-a5a3-0b04085de845", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T053141Z:2f8fff90-9bf9-430e-a266-d3ca5fc61ae3", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "cd66fe63-2ae7-4351-aeed-e11efc1e3ea6", + "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-request-id": "5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", + "x-ms-routing-request-id": "WESTUS2:20221026T070457Z:cd66fe63-2ae7-4351-aeed-e11efc1e3ea6", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-6226/providers/Microsoft.Cache/Redis/RedisBegin6097", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-1936/providers/Microsoft.Cache/Redis/RedisBegin1672", "location": "East US", - "name": "RedisBegin6097", + "name": "RedisBegin1672", "type": "Microsoft.Cache/Redis", "tags": {}, "properties": { "provisioningState": "Creating", - "redisVersion": "4.0.14", + "redisVersion": "6.0", "sku": { "name": "Premium", "family": "P", @@ -183,7 +170,7 @@ "primaryKey": "Sanitized", "secondaryKey": "Sanitized" }, - "hostName": "RedisBegin6097.redis.cache.windows.net", + "hostName": "RedisBegin1672.redis.cache.windows.net", "port": 6379, "sslPort": 6380, "linkedServers": [] @@ -191,38 +178,161 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6343ca216689d21fe90afe05c75679f2-cf0239ab1030e35b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1773d0b405b56c007a2b981e2fa73bef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "1773d0b405b56c007a2b981e2fa73bef", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 07:04:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5f11d5bb-d459-4156-80a3-2a13c8d5b0ea", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "006f4de8-d30b-40f9-84a0-4914199f7f9f", + "x-ms-routing-request-id": "WESTUS2:20221026T070457Z:5f11d5bb-d459-4156-80a3-2a13c8d5b0ea", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", + "name": "5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6343ca216689d21fe90afe05c75679f2-6abcb3dfb72e3f25-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "aa773ead58b929ccd21537adb477038d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "aa773ead58b929ccd21537adb477038d", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 07:04:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c97aa95d-0291-420a-a6de-11429a982be4", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "448add10-c32f-4027-9ee2-7c32d5b6b820", + "x-ms-routing-request-id": "WESTUS2:20221026T070458Z:c97aa95d-0291-420a-a6de-11429a982be4", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", + "name": "5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6343ca216689d21fe90afe05c75679f2-8bb4c839082cba55-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1cc189a8012c823ce855a703adc96262", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "1cc189a8012c823ce855a703adc96262", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 07:04:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "469bb602-2c3f-484e-8606-73b588fdc819", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "45572a65-f818-4bac-baa0-eb23056aa7a8", + "x-ms-routing-request-id": "WESTUS2:20221026T070459Z:469bb602-2c3f-484e-8606-73b588fdc819", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", + "name": "5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e47017c10ccaa540be98b803bf87c75c-843d55f6f25c284a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1665ff8b4854b661d4a1ff197ac644fd", + "traceparent": "00-6343ca216689d21fe90afe05c75679f2-253b02ac3e86273e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5a1ef371a8635b620349459fce53b703", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "1665ff8b4854b661d4a1ff197ac644fd", + "client-request-id": "5a1ef371a8635b620349459fce53b703", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:31:40 GMT", + "Date": "Wed, 26 Oct 2022 07:05:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ce31d43a-053d-471b-857d-826017a3c32c", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "cb6d7fc0-39ba-40dd-b6b3-a23036c9d3e0", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T053141Z:ce31d43a-053d-471b-857d-826017a3c32c", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "e0a9616d-cc3f-4f44-a1cd-1375210238bf", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "d0fe3d18-7dbb-4814-80cb-5b3653a5b5a1", + "x-ms-routing-request-id": "WESTUS2:20221026T070500Z:e0a9616d-cc3f-4f44-a1cd-1375210238bf", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845", - "name": "f4b7edb3-1645-4ac1-a5a3-0b04085de845", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", + "name": "5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", "status": "InProgress", "startTime": null, "endTime": null, @@ -232,38 +342,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e47017c10ccaa540be98b803bf87c75c-24971bb81693f54b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "54be8640ad80c7c885308e934634cb53", + "traceparent": "00-6343ca216689d21fe90afe05c75679f2-97623d42bb017de2-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a5760a281fe6abc202f4c264b1c87c08", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "54be8640ad80c7c885308e934634cb53", + "client-request-id": "a5760a281fe6abc202f4c264b1c87c08", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:31:42 GMT", + "Date": "Wed, 26 Oct 2022 07:05:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dcd173a4-8f4c-4c5c-b5e1-3a132398dc4b", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "e309de2d-8ef3-48ee-97d9-ab268a283fd7", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T053142Z:dcd173a4-8f4c-4c5c-b5e1-3a132398dc4b", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "7be00d31-361b-4c5f-96d1-d5e31aebe4be", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "534b16e3-b7dc-4af5-86b9-22f03246f3c6", + "x-ms-routing-request-id": "WESTUS2:20221026T070502Z:7be00d31-361b-4c5f-96d1-d5e31aebe4be", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845", - "name": "f4b7edb3-1645-4ac1-a5a3-0b04085de845", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", + "name": "5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", "status": "InProgress", "startTime": null, "endTime": null, @@ -273,38 +383,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e47017c10ccaa540be98b803bf87c75c-12df4dc401455c47-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "96733eef317807a67ab5f46537f830b6", + "traceparent": "00-6343ca216689d21fe90afe05c75679f2-41f2516a2cc1b7a8-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c13bd4b2a858ff2a276518e2bb9cb495", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "96733eef317807a67ab5f46537f830b6", + "client-request-id": "c13bd4b2a858ff2a276518e2bb9cb495", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:31:43 GMT", + "Date": "Wed, 26 Oct 2022 07:05:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8d82d76d-2e83-4ae9-9d67-37ac39b70363", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "13d5d8a6-a954-4ac4-9f63-570dfa6f5024", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T053144Z:8d82d76d-2e83-4ae9-9d67-37ac39b70363", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "ffb59b94-3cac-4b5f-8da4-d08d8f8ea3f0", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "07d4b243-6b55-4b1a-afd4-1118bfdc484e", + "x-ms-routing-request-id": "WESTUS2:20221026T070507Z:ffb59b94-3cac-4b5f-8da4-d08d8f8ea3f0", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845", - "name": "f4b7edb3-1645-4ac1-a5a3-0b04085de845", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", + "name": "5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", "status": "InProgress", "startTime": null, "endTime": null, @@ -314,38 +424,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e47017c10ccaa540be98b803bf87c75c-e89075fb0855ef4d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1fae4f4135fcdde8369e9123b9ce709f", + "traceparent": "00-6343ca216689d21fe90afe05c75679f2-5868246319db9899-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a2dba49dbc53517c3072586ee6feaa3b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "1fae4f4135fcdde8369e9123b9ce709f", + "client-request-id": "a2dba49dbc53517c3072586ee6feaa3b", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:31:44 GMT", + "Date": "Wed, 26 Oct 2022 07:05:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2edf2166-6fd2-47a1-abc8-533f03e10b55", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "af9eb956-1d6d-4dfd-91d8-46ee61fd2b6b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T053145Z:2edf2166-6fd2-47a1-abc8-533f03e10b55", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "e1151482-cdba-4ad5-9703-3124a8ddf9dd", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "08e43be5-440f-4604-a215-722ee31f2df7", + "x-ms-routing-request-id": "WESTUS2:20221026T070515Z:e1151482-cdba-4ad5-9703-3124a8ddf9dd", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845", - "name": "f4b7edb3-1645-4ac1-a5a3-0b04085de845", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", + "name": "5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", "status": "InProgress", "startTime": null, "endTime": null, @@ -355,38 +465,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e47017c10ccaa540be98b803bf87c75c-173ede02d3115e49-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3c2aacd6ae530e84e0b7d9cab963908d", + "traceparent": "00-6343ca216689d21fe90afe05c75679f2-7ab98b3f00ccd25b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f9ed3ccdf6177faadf777e8007dfef65", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "3c2aacd6ae530e84e0b7d9cab963908d", + "client-request-id": "f9ed3ccdf6177faadf777e8007dfef65", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:31:47 GMT", + "Date": "Wed, 26 Oct 2022 07:05:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "60ea148b-686d-41cb-9e79-f15140961686", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "f5f3563b-a495-4989-9ef8-3067dd006bc0", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T053147Z:60ea148b-686d-41cb-9e79-f15140961686", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "bca77907-53b8-432f-9f6b-ae7b2f515aba", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "9b231a09-7427-47de-8ad2-f23d851b40b1", + "x-ms-routing-request-id": "WESTUS2:20221026T070531Z:bca77907-53b8-432f-9f6b-ae7b2f515aba", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845", - "name": "f4b7edb3-1645-4ac1-a5a3-0b04085de845", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", + "name": "5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", "status": "InProgress", "startTime": null, "endTime": null, @@ -396,38 +506,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e47017c10ccaa540be98b803bf87c75c-a681709849957842-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f651d700ab86b95756955fdaa0824dac", + "traceparent": "00-6343ca216689d21fe90afe05c75679f2-ed9defc77221575a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0dc62c40d9edf5b558e990e650bc1828", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "f651d700ab86b95756955fdaa0824dac", + "client-request-id": "0dc62c40d9edf5b558e990e650bc1828", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:31:51 GMT", + "Date": "Wed, 26 Oct 2022 07:06:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "74d53b64-2e3a-4bbc-b535-4173e3e94b9f", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "f64a2d7c-0978-4927-88ed-b95061a2a336", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T053152Z:74d53b64-2e3a-4bbc-b535-4173e3e94b9f", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "bad4f6ef-50c6-48fd-a923-f43450ac417f", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "387fbb92-aa0e-4a70-a0d6-9ee7f46ebe00", + "x-ms-routing-request-id": "WESTUS2:20221026T070603Z:bad4f6ef-50c6-48fd-a923-f43450ac417f", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845", - "name": "f4b7edb3-1645-4ac1-a5a3-0b04085de845", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", + "name": "5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", "status": "InProgress", "startTime": null, "endTime": null, @@ -437,38 +547,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e47017c10ccaa540be98b803bf87c75c-00537593d15c2a40-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "8b8f5445f3ce9263ca9f3f455c1d24d2", + "traceparent": "00-6343ca216689d21fe90afe05c75679f2-7a2b3db8e6227d98-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7e15dcbbbaafa77ef95bc3db3efc4a51", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "8b8f5445f3ce9263ca9f3f455c1d24d2", + "client-request-id": "7e15dcbbbaafa77ef95bc3db3efc4a51", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:32:00 GMT", + "Date": "Wed, 26 Oct 2022 07:06:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ef161144-1bbd-4398-b84d-bbd80fa20ed8", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "03ff7bc3-e506-4467-80ac-cfd2dd82de35", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T053200Z:ef161144-1bbd-4398-b84d-bbd80fa20ed8", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "6c0c80a9-2c64-4fd0-8c7c-b000e1f22464", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "2636b1fe-7ba3-4493-8c82-3225f392596b", + "x-ms-routing-request-id": "WESTUS2:20221026T070635Z:6c0c80a9-2c64-4fd0-8c7c-b000e1f22464", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845", - "name": "f4b7edb3-1645-4ac1-a5a3-0b04085de845", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", + "name": "5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", "status": "InProgress", "startTime": null, "endTime": null, @@ -478,38 +588,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e47017c10ccaa540be98b803bf87c75c-275b598a37c4604d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e123040e797c2a195470e6be4eaa6e5e", + "traceparent": "00-6343ca216689d21fe90afe05c75679f2-60c3d214b39b7a25-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b92ef2829c37f44d87f7a12d65c42f23", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "e123040e797c2a195470e6be4eaa6e5e", + "client-request-id": "b92ef2829c37f44d87f7a12d65c42f23", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:32:16 GMT", + "Date": "Wed, 26 Oct 2022 07:07:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6fa75bf9-029f-4000-bafc-2b9fa84d8ce8", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "5ab3da77-94d7-4d97-b790-4b9f5e3e0662", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T053217Z:6fa75bf9-029f-4000-bafc-2b9fa84d8ce8", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "acc70ac0-cac3-4069-b053-4db6512c5822", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "a42af310-8f7d-40c1-9f66-95f53bf86ab2", + "x-ms-routing-request-id": "WESTUS2:20221026T070707Z:acc70ac0-cac3-4069-b053-4db6512c5822", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845", - "name": "f4b7edb3-1645-4ac1-a5a3-0b04085de845", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", + "name": "5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", "status": "InProgress", "startTime": null, "endTime": null, @@ -519,38 +629,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e47017c10ccaa540be98b803bf87c75c-3467b00ee5f54740-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "65852c6904d40cbe74bf2ce66c125c38", + "traceparent": "00-6343ca216689d21fe90afe05c75679f2-983fd9b0cb3a259c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2ac4565e70ca86b6ae1f139116d9b75b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "65852c6904d40cbe74bf2ce66c125c38", + "client-request-id": "2ac4565e70ca86b6ae1f139116d9b75b", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:32:48 GMT", + "Date": "Wed, 26 Oct 2022 07:07:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bfc55c7e-479a-47aa-b2f4-dd0448990fef", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "eda0b2b0-cc16-48eb-b293-e6b73e751646", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T053249Z:bfc55c7e-479a-47aa-b2f4-dd0448990fef", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "ab60f34e-1082-4f27-b24d-297ce3e9c196", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "0d734353-f2ec-4c4f-bf18-ed4e426127ed", + "x-ms-routing-request-id": "WESTUS2:20221026T070739Z:ab60f34e-1082-4f27-b24d-297ce3e9c196", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845", - "name": "f4b7edb3-1645-4ac1-a5a3-0b04085de845", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", + "name": "5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", "status": "InProgress", "startTime": null, "endTime": null, @@ -560,38 +670,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e47017c10ccaa540be98b803bf87c75c-a3aa2b974cbdfd47-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9ccc8c706b5ecb303a64365d0da44420", + "traceparent": "00-6343ca216689d21fe90afe05c75679f2-39bec417892988e7-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5d633f9f5f8d1ff08f20f7b818514135", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "9ccc8c706b5ecb303a64365d0da44420", + "client-request-id": "5d633f9f5f8d1ff08f20f7b818514135", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:33:21 GMT", + "Date": "Wed, 26 Oct 2022 07:08:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4eb40011-e3ff-4e8e-8415-a6894b681b81", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "5aae1975-b6eb-40ba-bb0e-7e3391672622", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T053321Z:4eb40011-e3ff-4e8e-8415-a6894b681b81", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "026a8cb7-e488-4051-8d56-359e394a78d0", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "bfbed3ff-782c-4559-86ec-061c9a59e7d0", + "x-ms-routing-request-id": "WESTUS2:20221026T070811Z:026a8cb7-e488-4051-8d56-359e394a78d0", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845", - "name": "f4b7edb3-1645-4ac1-a5a3-0b04085de845", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", + "name": "5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", "status": "InProgress", "startTime": null, "endTime": null, @@ -601,38 +711,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e47017c10ccaa540be98b803bf87c75c-0f54efe37583ab4b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "30dbe031be9709fe45176dbd4c33be42", + "traceparent": "00-6343ca216689d21fe90afe05c75679f2-74be5ce4bb1a686f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e77c9f2b1f3812863ba80b1889bbdead", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "30dbe031be9709fe45176dbd4c33be42", + "client-request-id": "e77c9f2b1f3812863ba80b1889bbdead", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:33:53 GMT", + "Date": "Wed, 26 Oct 2022 07:08:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ffd1988b-409c-48eb-b1fc-6aae496a57fb", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "2acab2f0-30de-4bd4-b0fe-efc7674111a0", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T053354Z:ffd1988b-409c-48eb-b1fc-6aae496a57fb", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "076c5434-73da-4e8f-8a54-39510211a705", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "a1170dfb-fefb-4a97-8c0d-ed8070de1e58", + "x-ms-routing-request-id": "WESTUS2:20221026T070844Z:076c5434-73da-4e8f-8a54-39510211a705", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845", - "name": "f4b7edb3-1645-4ac1-a5a3-0b04085de845", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", + "name": "5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", "status": "InProgress", "startTime": null, "endTime": null, @@ -642,38 +752,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e47017c10ccaa540be98b803bf87c75c-ca8bcc6ac44d5443-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c14dad13d1ddfdfffbba2b70cd60ffcf", + "traceparent": "00-6343ca216689d21fe90afe05c75679f2-e6edc7d2fdeb1863-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "268d463fd160ff9565a59ba979fe6d5d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "c14dad13d1ddfdfffbba2b70cd60ffcf", + "client-request-id": "268d463fd160ff9565a59ba979fe6d5d", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:34:26 GMT", + "Date": "Wed, 26 Oct 2022 07:09:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9bd28444-bf1c-4736-b648-48fe2a8a18e2", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "ee5f9d6d-aeb8-4ea6-9e79-33141fcda6a6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T053426Z:9bd28444-bf1c-4736-b648-48fe2a8a18e2", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "ff18c186-d7bb-4ee6-bfb1-dc4b8f7458af", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "18b47f04-e73f-481f-be17-102196edddb1", + "x-ms-routing-request-id": "WESTUS2:20221026T070916Z:ff18c186-d7bb-4ee6-bfb1-dc4b8f7458af", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845", - "name": "f4b7edb3-1645-4ac1-a5a3-0b04085de845", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", + "name": "5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", "status": "InProgress", "startTime": null, "endTime": null, @@ -683,38 +793,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e47017c10ccaa540be98b803bf87c75c-ad1a68b41383294c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "8bb50c7a2c36b2a18ec25647fe737e07", + "traceparent": "00-6343ca216689d21fe90afe05c75679f2-edaa13a5f49c973d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7666ddddd05d8023b85121e553d796d3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "8bb50c7a2c36b2a18ec25647fe737e07", + "client-request-id": "7666ddddd05d8023b85121e553d796d3", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:34:58 GMT", + "Date": "Wed, 26 Oct 2022 07:09:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9e1f338d-e0cf-455f-bd8a-b673ee365ece", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "f752839d-6612-446a-97b2-e0c52c9df57f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T053458Z:9e1f338d-e0cf-455f-bd8a-b673ee365ece", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "64969816-224b-4766-8c96-9c942129f030", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "ef02cd9f-093d-4d1f-8ad9-d88c8ed20ca5", + "x-ms-routing-request-id": "WESTUS2:20221026T070948Z:64969816-224b-4766-8c96-9c942129f030", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845", - "name": "f4b7edb3-1645-4ac1-a5a3-0b04085de845", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", + "name": "5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", "status": "InProgress", "startTime": null, "endTime": null, @@ -724,38 +834,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e47017c10ccaa540be98b803bf87c75c-70f35b15df73074d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5f4af4a583565f42e1dd34dd938e3be4", + "traceparent": "00-6343ca216689d21fe90afe05c75679f2-e498f76328e39174-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d27849421bc35ad4097d829283dc983d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "5f4af4a583565f42e1dd34dd938e3be4", + "client-request-id": "d27849421bc35ad4097d829283dc983d", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:35:30 GMT", + "Date": "Wed, 26 Oct 2022 07:10:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d603b9f2-63a2-452f-8bc8-8545364e1722", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "95a0e827-aa47-4600-a241-d2009b388dfa", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T053531Z:d603b9f2-63a2-452f-8bc8-8545364e1722", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "0a36b623-91d5-45b8-998d-7c083a311ae6", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "d3b00851-a34c-43ed-b778-7bbad498cff7", + "x-ms-routing-request-id": "WESTUS2:20221026T071020Z:0a36b623-91d5-45b8-998d-7c083a311ae6", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845", - "name": "f4b7edb3-1645-4ac1-a5a3-0b04085de845", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", + "name": "5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", "status": "InProgress", "startTime": null, "endTime": null, @@ -765,38 +875,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e47017c10ccaa540be98b803bf87c75c-5efe73bd68e14648-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "40429d17337ee70c0b9b321a7ab7ff87", + "traceparent": "00-6343ca216689d21fe90afe05c75679f2-f824f3ea27929220-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ab3bae3a67556f50220d6d0fafb0ac8d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "40429d17337ee70c0b9b321a7ab7ff87", + "client-request-id": "ab3bae3a67556f50220d6d0fafb0ac8d", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:36:03 GMT", + "Date": "Wed, 26 Oct 2022 07:10:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "09274b71-48ac-4c7b-9994-846e06f72028", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "112373d5-8579-47d7-9431-3ccf985e41ce", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T053603Z:09274b71-48ac-4c7b-9994-846e06f72028", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "ae24e1da-b178-42e0-be68-c979e7e5b2b4", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "8dd07332-59bb-4af6-8027-a4fe4916f321", + "x-ms-routing-request-id": "WESTUS2:20221026T071052Z:ae24e1da-b178-42e0-be68-c979e7e5b2b4", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845", - "name": "f4b7edb3-1645-4ac1-a5a3-0b04085de845", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", + "name": "5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", "status": "InProgress", "startTime": null, "endTime": null, @@ -806,38 +916,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e47017c10ccaa540be98b803bf87c75c-beecc9fe6b587a4e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d9ca233b9f16f678ca55a958f7c41e00", + "traceparent": "00-6343ca216689d21fe90afe05c75679f2-be57b64a13b10e99-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2f67c80f9b85c299090c6cdf4e90fcdc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "d9ca233b9f16f678ca55a958f7c41e00", + "client-request-id": "2f67c80f9b85c299090c6cdf4e90fcdc", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:36:35 GMT", + "Date": "Wed, 26 Oct 2022 07:11:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f8bb48d4-587e-4b08-b422-06d0dcf2040e", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "e9e611e1-e071-4ec1-9478-a054b4d31bd7", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T053636Z:f8bb48d4-587e-4b08-b422-06d0dcf2040e", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "4004659b-58de-409f-9e4c-0695d846ff49", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "9ac0e581-045a-42c1-a395-32ab8ef34bc5", + "x-ms-routing-request-id": "WESTUS2:20221026T071124Z:4004659b-58de-409f-9e4c-0695d846ff49", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845", - "name": "f4b7edb3-1645-4ac1-a5a3-0b04085de845", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", + "name": "5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", "status": "InProgress", "startTime": null, "endTime": null, @@ -847,38 +957,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e47017c10ccaa540be98b803bf87c75c-cddd9f03cc3e7345-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "602f71873e307289e86253bb5027e42a", + "traceparent": "00-6343ca216689d21fe90afe05c75679f2-d35d428a47b2b9d8-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a4aae4b8ea9cdb7df909afb6adc5aa59", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "602f71873e307289e86253bb5027e42a", + "client-request-id": "a4aae4b8ea9cdb7df909afb6adc5aa59", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:37:08 GMT", + "Date": "Wed, 26 Oct 2022 07:11:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a64324f2-1f66-436e-be9a-82350777baa1", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "b99770a0-6e88-444a-ae93-ccb233b5f0fb", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T053708Z:a64324f2-1f66-436e-be9a-82350777baa1", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "cc6e8d4e-2ef3-4018-ba89-8afff96b73b1", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "37c41299-8e1d-4668-9133-2c0766bb69d7", + "x-ms-routing-request-id": "WESTUS2:20221026T071156Z:cc6e8d4e-2ef3-4018-ba89-8afff96b73b1", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845", - "name": "f4b7edb3-1645-4ac1-a5a3-0b04085de845", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", + "name": "5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", "status": "InProgress", "startTime": null, "endTime": null, @@ -888,38 +998,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e47017c10ccaa540be98b803bf87c75c-2ef3643985e7334a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6fa1acde62c378ce244b752889b3ef47", + "traceparent": "00-6343ca216689d21fe90afe05c75679f2-1dacc23933cef52c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "bb83f4d169759fb71579a149fa702191", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "6fa1acde62c378ce244b752889b3ef47", + "client-request-id": "bb83f4d169759fb71579a149fa702191", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:37:40 GMT", + "Date": "Wed, 26 Oct 2022 07:12:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "77ddbca4-951c-402f-89c0-31b42c0fdfb9", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "5d59dabd-932b-4ae6-a2be-6f996f1a1acf", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T053741Z:77ddbca4-951c-402f-89c0-31b42c0fdfb9", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "d3d45933-1c63-4d6a-a9f0-60f2c2016a07", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "ddec733d-670c-41b1-81e9-17636898d101", + "x-ms-routing-request-id": "WESTUS2:20221026T071229Z:d3d45933-1c63-4d6a-a9f0-60f2c2016a07", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845", - "name": "f4b7edb3-1645-4ac1-a5a3-0b04085de845", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", + "name": "5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", "status": "InProgress", "startTime": null, "endTime": null, @@ -929,38 +1039,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e47017c10ccaa540be98b803bf87c75c-09531816d859eb40-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0993327c9e87fc569a58f1b34bbda6a3", + "traceparent": "00-6343ca216689d21fe90afe05c75679f2-12bc743ab6d3da8f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "cb579110070524f14a8b367cebe31444", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "0993327c9e87fc569a58f1b34bbda6a3", + "client-request-id": "cb579110070524f14a8b367cebe31444", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:38:13 GMT", + "Date": "Wed, 26 Oct 2022 07:13:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "edfeddfa-3e44-476b-9a47-e219da600674", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "5663b641-f3d7-454e-a09b-2fe818c15df1", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T053813Z:edfeddfa-3e44-476b-9a47-e219da600674", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "f6cb6caf-0aec-4f2b-a228-7399832c1bee", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "1400a6a9-7b3c-4cf2-89d9-227680457101", + "x-ms-routing-request-id": "WESTUS2:20221026T071301Z:f6cb6caf-0aec-4f2b-a228-7399832c1bee", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845", - "name": "f4b7edb3-1645-4ac1-a5a3-0b04085de845", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", + "name": "5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", "status": "InProgress", "startTime": null, "endTime": null, @@ -970,38 +1080,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e47017c10ccaa540be98b803bf87c75c-91bb9e89151f2c46-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4a7a7f70ae22243ca3b73ce5c860e934", + "traceparent": "00-6343ca216689d21fe90afe05c75679f2-d6215121dea0688a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "590e1361410d4f662c0b8f234833e088", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "4a7a7f70ae22243ca3b73ce5c860e934", + "client-request-id": "590e1361410d4f662c0b8f234833e088", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:38:45 GMT", + "Date": "Wed, 26 Oct 2022 07:13:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4ca7708b-0879-4e77-afaf-8f1826b9e82e", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "26649271-34d9-4072-802f-918b61a459a8", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T053846Z:4ca7708b-0879-4e77-afaf-8f1826b9e82e", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "0318d5d9-ca46-4f2e-b342-ece6630f6973", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "21b1b007-873b-4014-9528-8d8bb74ee530", + "x-ms-routing-request-id": "WESTUS2:20221026T071333Z:0318d5d9-ca46-4f2e-b342-ece6630f6973", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845", - "name": "f4b7edb3-1645-4ac1-a5a3-0b04085de845", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", + "name": "5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", "status": "InProgress", "startTime": null, "endTime": null, @@ -1011,38 +1121,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e47017c10ccaa540be98b803bf87c75c-9d6bdc3bfade1a43-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1e3e0c73db9340a256a5d56b711a2c67", + "traceparent": "00-6343ca216689d21fe90afe05c75679f2-4944837a4c7835db-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1ba51ee7df6eca54035f70e9333bb432", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "1e3e0c73db9340a256a5d56b711a2c67", + "client-request-id": "1ba51ee7df6eca54035f70e9333bb432", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:39:18 GMT", + "Date": "Wed, 26 Oct 2022 07:14:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f5583ebd-cb50-4261-99a8-3ccc5d14c3b1", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "5f313774-e70f-4067-b0a1-4c9a0efd7ec2", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T053918Z:f5583ebd-cb50-4261-99a8-3ccc5d14c3b1", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "685615e7-9318-482f-a767-f5d8e54c61ac", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "31e267f4-9fc7-4a95-9a1b-592c3665d1ae", + "x-ms-routing-request-id": "WESTUS2:20221026T071405Z:685615e7-9318-482f-a767-f5d8e54c61ac", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845", - "name": "f4b7edb3-1645-4ac1-a5a3-0b04085de845", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", + "name": "5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", "status": "InProgress", "startTime": null, "endTime": null, @@ -1052,38 +1162,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e47017c10ccaa540be98b803bf87c75c-2fd1df410afd8747-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "09b7d2a5a439cd24f66e65cf62713339", + "traceparent": "00-6343ca216689d21fe90afe05c75679f2-27d97809ad33ce1c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e7e85d64c762cf842b079ef977cddb17", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "09b7d2a5a439cd24f66e65cf62713339", + "client-request-id": "e7e85d64c762cf842b079ef977cddb17", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:39:50 GMT", + "Date": "Wed, 26 Oct 2022 07:14:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3c431a12-8f18-4f04-99ff-e00e6dec5add", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "fa8880d4-c7e3-4650-ad7d-0a71829f152b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T053950Z:3c431a12-8f18-4f04-99ff-e00e6dec5add", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "d07b566f-f62f-4425-8e4d-b10549a06081", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "8f2b311e-9d7a-4600-8917-7facb1eb3dec", + "x-ms-routing-request-id": "WESTUS2:20221026T071437Z:d07b566f-f62f-4425-8e4d-b10549a06081", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845", - "name": "f4b7edb3-1645-4ac1-a5a3-0b04085de845", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", + "name": "5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", "status": "InProgress", "startTime": null, "endTime": null, @@ -1093,38 +1203,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e47017c10ccaa540be98b803bf87c75c-fb817a0c05f14145-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3f3fbc6e887e950fdd3af47dd9d0b389", + "traceparent": "00-6343ca216689d21fe90afe05c75679f2-bbdf5a5190b6101e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "cd94adabf83d82d6bf4456add07c1cf1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "3f3fbc6e887e950fdd3af47dd9d0b389", + "client-request-id": "cd94adabf83d82d6bf4456add07c1cf1", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:40:23 GMT", + "Date": "Wed, 26 Oct 2022 07:15:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d6bff71d-56ba-4478-9b9a-6a3be280de48", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "b20eb3f1-8b43-4aeb-a18a-fcb23ff87864", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T054023Z:d6bff71d-56ba-4478-9b9a-6a3be280de48", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "a2a665ed-6239-4562-a22e-ced135f5dd8e", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "73670203-d515-4de8-b93c-67921c59825b", + "x-ms-routing-request-id": "WESTUS2:20221026T071509Z:a2a665ed-6239-4562-a22e-ced135f5dd8e", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845", - "name": "f4b7edb3-1645-4ac1-a5a3-0b04085de845", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", + "name": "5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", "status": "InProgress", "startTime": null, "endTime": null, @@ -1134,38 +1244,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e47017c10ccaa540be98b803bf87c75c-9373b852b80b2d48-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f63fd48bdfa9cffbe770272476d2dde4", + "traceparent": "00-6343ca216689d21fe90afe05c75679f2-1bbc5edcd2f5778f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "eabe5d57f94b1f2599d5f066405a5235", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "f63fd48bdfa9cffbe770272476d2dde4", + "client-request-id": "eabe5d57f94b1f2599d5f066405a5235", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:40:55 GMT", + "Date": "Wed, 26 Oct 2022 07:15:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "06222ef6-dbec-43c2-bdf3-514243cb7c48", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "ce43c32b-20f5-4f8b-b37a-7d303248b99a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T054055Z:06222ef6-dbec-43c2-bdf3-514243cb7c48", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "f6d51f24-f9d2-4b27-b01a-6fcfdd4f6bc9", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "2feaeb1c-c148-4e86-a2e1-5898236ff1b0", + "x-ms-routing-request-id": "WESTUS2:20221026T071541Z:f6d51f24-f9d2-4b27-b01a-6fcfdd4f6bc9", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845", - "name": "f4b7edb3-1645-4ac1-a5a3-0b04085de845", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", + "name": "5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", "status": "InProgress", "startTime": null, "endTime": null, @@ -1175,38 +1285,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e47017c10ccaa540be98b803bf87c75c-bfbe5867a982e945-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b4fc9b71ecda1de8c3222cffafa7f425", + "traceparent": "00-6343ca216689d21fe90afe05c75679f2-59ffb3323a9f7cb5-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "853e5984e6a66cf48765271e71d7ffae", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "b4fc9b71ecda1de8c3222cffafa7f425", + "client-request-id": "853e5984e6a66cf48765271e71d7ffae", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:41:26 GMT", + "Date": "Wed, 26 Oct 2022 07:16:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ce2d4b86-dcd9-4067-991f-059617c1d310", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "6f4fdfdc-e9a5-4c0b-99c7-d1ba640a4db5", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T054127Z:ce2d4b86-dcd9-4067-991f-059617c1d310", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "1aab011e-bdb3-47e9-b47f-39332835a5a8", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "6635064b-d080-4075-abd9-4abdf683cebf", + "x-ms-routing-request-id": "WESTUS2:20221026T071613Z:1aab011e-bdb3-47e9-b47f-39332835a5a8", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845", - "name": "f4b7edb3-1645-4ac1-a5a3-0b04085de845", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", + "name": "5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", "status": "InProgress", "startTime": null, "endTime": null, @@ -1216,38 +1326,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e47017c10ccaa540be98b803bf87c75c-8f51aba52c377148-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "8d44dbba3d328f90c070570d60ea1e0a", + "traceparent": "00-6343ca216689d21fe90afe05c75679f2-ab1ec9fd0ecbcdcd-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "19a2acebf00fb1cb87753367076f4164", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "8d44dbba3d328f90c070570d60ea1e0a", + "client-request-id": "19a2acebf00fb1cb87753367076f4164", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:41:59 GMT", + "Date": "Wed, 26 Oct 2022 07:16:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "96eade4e-11ab-4aaf-a5d4-098ea272b288", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "f01956f5-6077-429e-9b20-51d94f74dd59", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T054200Z:96eade4e-11ab-4aaf-a5d4-098ea272b288", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "1672caf8-1d80-49a8-b564-97e0c20b1f26", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "ef6ec818-37d1-473d-b198-79ff9dc4f419", + "x-ms-routing-request-id": "WESTUS2:20221026T071645Z:1672caf8-1d80-49a8-b564-97e0c20b1f26", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845", - "name": "f4b7edb3-1645-4ac1-a5a3-0b04085de845", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", + "name": "5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", "status": "InProgress", "startTime": null, "endTime": null, @@ -1257,38 +1367,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e47017c10ccaa540be98b803bf87c75c-580bf4023e0add47-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3e0c105cffd49eafec213286b2fc2040", + "traceparent": "00-6343ca216689d21fe90afe05c75679f2-9eb6049799ae6f81-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "772921f1963e704b685263e5d107aec2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "3e0c105cffd49eafec213286b2fc2040", + "client-request-id": "772921f1963e704b685263e5d107aec2", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:42:31 GMT", + "Date": "Wed, 26 Oct 2022 07:17:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9e5e4235-d65f-491b-96c4-dd981a8f7044", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "d5984d6a-b549-4e72-879a-e4ad35687ce2", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T054232Z:9e5e4235-d65f-491b-96c4-dd981a8f7044", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "b9638fd6-771e-49c5-ae95-cdae703c6bd6", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "2c75d91a-ef7e-40b7-ace8-9e02fc1f6291", + "x-ms-routing-request-id": "WESTUS2:20221026T071718Z:b9638fd6-771e-49c5-ae95-cdae703c6bd6", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845", - "name": "f4b7edb3-1645-4ac1-a5a3-0b04085de845", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", + "name": "5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", "status": "InProgress", "startTime": null, "endTime": null, @@ -1298,38 +1408,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e47017c10ccaa540be98b803bf87c75c-0a9c14d53444bb48-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9a6a027c508e33b10a6df36a95dabdd8", + "traceparent": "00-6343ca216689d21fe90afe05c75679f2-182dd4b268563a84-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "937b42d638b893258d8cfe30b28d6418", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "9a6a027c508e33b10a6df36a95dabdd8", + "client-request-id": "937b42d638b893258d8cfe30b28d6418", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:43:04 GMT", + "Date": "Wed, 26 Oct 2022 07:17:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7f937cdd-af3f-4b80-8277-585bd469efc3", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "46a011ef-5775-4ca1-9a93-11fd99c55ca5", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T054304Z:7f937cdd-af3f-4b80-8277-585bd469efc3", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "fc668bb4-1218-450a-9b44-8c3437dd1e98", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "e9d13866-67f5-417c-a01d-f74b52345724", + "x-ms-routing-request-id": "WESTUS2:20221026T071750Z:fc668bb4-1218-450a-9b44-8c3437dd1e98", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845", - "name": "f4b7edb3-1645-4ac1-a5a3-0b04085de845", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", + "name": "5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", "status": "InProgress", "startTime": null, "endTime": null, @@ -1339,38 +1449,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e47017c10ccaa540be98b803bf87c75c-236693bb83ecfb40-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9ea32203b69abb512ca5a0100b0adcc4", + "traceparent": "00-6343ca216689d21fe90afe05c75679f2-0c19c403ad7a9381-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4f2dc32388ad546f6131b0bc8de5e080", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "9ea32203b69abb512ca5a0100b0adcc4", + "client-request-id": "4f2dc32388ad546f6131b0bc8de5e080", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:43:37 GMT", + "Date": "Wed, 26 Oct 2022 07:18:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b59c1aa6-162e-40c7-816e-4844156534c5", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "267c4a84-d1f6-432f-930c-2b4d086a235f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T054337Z:b59c1aa6-162e-40c7-816e-4844156534c5", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "4efe20c2-5c8f-48fb-9824-5db9ad646cd5", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "2eeee6b5-18eb-4842-b6d6-6f0d1a39ce21", + "x-ms-routing-request-id": "WESTUS2:20221026T071822Z:4efe20c2-5c8f-48fb-9824-5db9ad646cd5", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845", - "name": "f4b7edb3-1645-4ac1-a5a3-0b04085de845", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", + "name": "5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", "status": "InProgress", "startTime": null, "endTime": null, @@ -1380,38 +1490,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e47017c10ccaa540be98b803bf87c75c-1ae4893b64b0d947-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5e91174f83800b7c5ed833660b440911", + "traceparent": "00-6343ca216689d21fe90afe05c75679f2-56146d57dde04f33-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c59071c6aef4b8acfb95e9b2981abddb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "5e91174f83800b7c5ed833660b440911", + "client-request-id": "c59071c6aef4b8acfb95e9b2981abddb", "Content-Length": "352", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 05:44:09 GMT", + "Date": "Wed, 26 Oct 2022 07:18:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c9fe58b5-2f55-45a5-8b7e-fefcaa927412", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "6aa17955-ba3a-499b-9c9e-0b5cf3c68a42", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T054410Z:c9fe58b5-2f55-45a5-8b7e-fefcaa927412", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "c46e330a-0fcd-4651-bb58-29ae6881f52c", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "ae46972b-7edd-40cd-a400-a85001713546", + "x-ms-routing-request-id": "WESTUS2:20221026T071854Z:c46e330a-0fcd-4651-bb58-29ae6881f52c", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/f4b7edb3-1645-4ac1-a5a3-0b04085de845", - "name": "f4b7edb3-1645-4ac1-a5a3-0b04085de845", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", + "name": "5a4f2abf-2d17-4fc0-8ae3-a4e211b645b5", "status": "Succeeded", "startTime": null, "endTime": null, @@ -1421,43 +1531,43 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-6226/providers/Microsoft.Cache/redis/RedisBegin6097?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-1936/providers/Microsoft.Cache/redis/RedisBegin1672?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e47017c10ccaa540be98b803bf87c75c-5b65cd5e651a2e47-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "90825a648158c6a5b0ae6ee8afa12800", + "traceparent": "00-6343ca216689d21fe90afe05c75679f2-67c0d0b38b891e95-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0ec24aee5ed94e14d2273286876906a8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "90825a648158c6a5b0ae6ee8afa12800", - "Content-Length": "767", + "client-request-id": "0ec24aee5ed94e14d2273286876906a8", + "Content-Length": "764", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 05:44:10 GMT", + "Date": "Wed, 26 Oct 2022 07:18:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a5f01619-0631-4a69-90d6-debb8be5825e", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "6671b79a-1f35-4d02-8323-6e3863439b73", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T054410Z:a5f01619-0631-4a69-90d6-debb8be5825e", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "97f8fe81-9261-45c5-b735-814cf2e3e5a3", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "c3dd3932-6913-4459-8734-0c0f4462a279", + "x-ms-routing-request-id": "WESTUS2:20221026T071854Z:97f8fe81-9261-45c5-b735-814cf2e3e5a3", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-6226/providers/Microsoft.Cache/Redis/RedisBegin6097", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-1936/providers/Microsoft.Cache/Redis/RedisBegin1672", "location": "East US", - "name": "RedisBegin6097", + "name": "RedisBegin1672", "type": "Microsoft.Cache/Redis", "tags": {}, "properties": { "provisioningState": "Succeeded", - "redisVersion": "4.0.14", + "redisVersion": "6.0", "sku": { "name": "Premium", "family": "P", @@ -1484,7 +1594,7 @@ "maxmemory-delta": "642" }, "accessKeys": null, - "hostName": "RedisBegin6097.redis.cache.windows.net", + "hostName": "RedisBegin1672.redis.cache.windows.net", "port": 6379, "sslPort": 6380, "linkedServers": [] @@ -1492,46 +1602,46 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-6226/providers/Microsoft.Cache/redis?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-1936/providers/Microsoft.Cache/redis?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-9c7cf84755281041a7d2e2b787374cdb-5a29decd7ef7184a-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "7d1a2e905f498058a59740c182eab0e7", + "traceparent": "00-2a928da8cec3d48eabca19cad5f0dfad-3cfc37b9a495c46f-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "416a7dac9efc7524167454189ebdbb46", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "7d1a2e905f498058a59740c182eab0e7", - "Content-Length": "779", + "client-request-id": "416a7dac9efc7524167454189ebdbb46", + "Content-Length": "776", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 05:44:11 GMT", + "Date": "Wed, 26 Oct 2022 07:18:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "498a845d-10d2-4f9a-88ab-8ab42cad3320", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "4c21c486-d787-47d0-b817-02d5e1069b27", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T054411Z:498a845d-10d2-4f9a-88ab-8ab42cad3320", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "9b14cfc5-be83-46a3-806a-288e7df4134d", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "244e0ca9-bc64-469f-89a0-425d2d6e5b8d", + "x-ms-routing-request-id": "WESTUS2:20221026T071854Z:9b14cfc5-be83-46a3-806a-288e7df4134d", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-6226/providers/Microsoft.Cache/Redis/RedisBegin6097", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-1936/providers/Microsoft.Cache/Redis/RedisBegin1672", "location": "East US", - "name": "RedisBegin6097", + "name": "RedisBegin1672", "type": "Microsoft.Cache/Redis", "tags": {}, "properties": { "provisioningState": "Succeeded", - "redisVersion": "4.0.14", + "redisVersion": "6.0", "sku": { "name": "Premium", "family": "P", @@ -1558,7 +1668,7 @@ "maxmemory-delta": "642" }, "accessKeys": null, - "hostName": "RedisBegin6097.redis.cache.windows.net", + "hostName": "RedisBegin1672.redis.cache.windows.net", "port": 6379, "sslPort": 6380, "linkedServers": [] @@ -1568,46 +1678,46 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/redis?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/redis?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-24cbd5bbca0c074a93484ca0085040ad-36997d2a6bf6fc4a-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b0ac8f9c4b87ce6b71cbadd215945bbd", + "traceparent": "00-535fb1db0b34e74e58ae0b65000eae28-f251b465878108e7-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "42ced574d12367a65d42f3cc7b263092", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "b0ac8f9c4b87ce6b71cbadd215945bbd", - "Content-Length": "779", + "client-request-id": "42ced574d12367a65d42f3cc7b263092", + "Content-Length": "776", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 05:44:11 GMT", + "Date": "Wed, 26 Oct 2022 07:18:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bd92e889-267a-41b5-902d-6beb16d1cb72", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-request-id": "108c6c9f-ae29-46fc-8b00-371edb469b87", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T054411Z:bd92e889-267a-41b5-902d-6beb16d1cb72", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "7c88b740-3f01-4e98-83b0-6d128a46ede0", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "b504d1a2-2792-4753-ae0d-8e75b67f9e11", + "x-ms-routing-request-id": "WESTUS2:20221026T071855Z:7c88b740-3f01-4e98-83b0-6d128a46ede0", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-6226/providers/Microsoft.Cache/Redis/RedisBegin6097", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-1936/providers/Microsoft.Cache/Redis/RedisBegin1672", "location": "East US", - "name": "RedisBegin6097", + "name": "RedisBegin1672", "type": "Microsoft.Cache/Redis", "tags": {}, "properties": { "provisioningState": "Succeeded", - "redisVersion": "4.0.14", + "redisVersion": "6.0", "sku": { "name": "Premium", "family": "P", @@ -1634,7 +1744,7 @@ "maxmemory-delta": "642" }, "accessKeys": null, - "hostName": "RedisBegin6097.redis.cache.windows.net", + "hostName": "RedisBegin1672.redis.cache.windows.net", "port": 6379, "sslPort": 6380, "linkedServers": [] @@ -1644,52 +1754,52 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-6226/providers/Microsoft.Cache/redis/RedisBegin6097/listKeys?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-1936/providers/Microsoft.Cache/redis/RedisBegin1672/listKeys?api-version=2022-06-01", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "0", - "traceparent": "00-ecaed7ff78df5e49ba03d5e7b4909829-4cbe1a64cc30ef4b-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "dcd632b08b2a05c80102ebc141e343c6", + "traceparent": "00-5dc39533dd2c7fabb7b60726cac4b382-1cbc9965166351bb-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1b05418e7cb04fdf264cf8650afcb014", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "dcd632b08b2a05c80102ebc141e343c6", + "client-request-id": "1b05418e7cb04fdf264cf8650afcb014", "Content-Length": "53", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 05:44:12 GMT", + "Date": "Wed, 26 Oct 2022 07:18:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3a9ac80a-32df-4ae1-9c09-492281bdcc8c", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "26d9c032-bb0c-4067-8b7e-10456e91346c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T054412Z:3a9ac80a-32df-4ae1-9c09-492281bdcc8c", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "053af91a-66ec-45a3-bb11-48022328abe4", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "823c4168-c7ea-434c-8f38-c069893416a2", + "x-ms-routing-request-id": "WESTUS2:20221026T071855Z:053af91a-66ec-45a3-bb11-48022328abe4", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "primaryKey": "Sanitized", - "secondaryKey": "Sanitized" + "primaryKey": "Sanitized1", + "secondaryKey": "Sanitized1" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-6226/providers/Microsoft.Cache/redis/RedisBegin6097/regenerateKey?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-1936/providers/Microsoft.Cache/redis/RedisBegin1672/regenerateKey?api-version=2022-06-01", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-617180b19f51ad4b97abb5993e76474b-7e1c44c0bf5b3549-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "204b86fd77f44478c24c0c7eb1856a11", + "traceparent": "00-02954b9389489092813898ddef2ca2d6-42b2585a19a1806b-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b212ec6cc39ada84d702e3baab57faf0", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -1698,31 +1808,31 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "204b86fd77f44478c24c0c7eb1856a11", + "client-request-id": "b212ec6cc39ada84d702e3baab57faf0", "Content-Length": "53", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 05:44:13 GMT", + "Date": "Wed, 26 Oct 2022 07:18:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cff4d03e-dd9d-49d8-a6e7-27514fcdc75f", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "7cc45e0e-3884-49d1-99f6-438038288e8c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T054413Z:cff4d03e-dd9d-49d8-a6e7-27514fcdc75f", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "4c429871-8440-4cd9-b5cb-3eba0bd98b88", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "c08ca812-071a-4645-814b-3b9e9e528d3c", + "x-ms-routing-request-id": "WESTUS2:20221026T071855Z:4c429871-8440-4cd9-b5cb-3eba0bd98b88", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "primaryKey": "Sanitized", - "secondaryKey": "Sanitized" + "primaryKey": "Sanitized2", + "secondaryKey": "Sanitized2" } } ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "42708815", + "RandomSeed": "665521030", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + "SUBSCRIPTION_ID": "3919658b-68ae-4509-8c17-6a2238340ae7" } } diff --git a/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/PatchSchedulesFunctionalTests/CreateUpdateDeleteTest.json b/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/PatchSchedulesFunctionalTests/CreateUpdateDeleteTest.json index a6fcbcdba587..eb91d4620a89 100644 --- a/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/PatchSchedulesFunctionalTests/CreateUpdateDeleteTest.json +++ b/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/PatchSchedulesFunctionalTests/CreateUpdateDeleteTest.json @@ -1,52 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-259033b58709094799c626f9cb7c60be-0e58c47b0c248a45-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6754b9045a42eb3a006c0979c569fc4c", + "traceparent": "00-113370ac1c4e3ecf9db4108e99a332ab-bf6bec8511ca1c85-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1eae8fb1a7d74fce8cb9e75f35a8d1a5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "747", + "Content-Length": "405", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 06:00:57 GMT", + "Date": "Wed, 26 Oct 2022 07:18:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8c7b0faa-c1ca-4920-ac3b-34a192ae430f", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "8c7b0faa-c1ca-4920-ac3b-34a192ae430f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T060057Z:8c7b0faa-c1ca-4920-ac3b-34a192ae430f" + "x-ms-correlation-request-id": "8f2ba2d8-ecc8-42f6-9a88-3557decfe689", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "8f2ba2d8-ecc8-42f6-9a88-3557decfe689", + "x-ms-routing-request-id": "WESTUS2:20221026T071857Z:8f2ba2d8-ecc8-42f6-9a88-3557decfe689" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7", "authorizationSource": "RoleBased", "managedByTenants": [], - "tags": { - "TagKey-9823": "TagValue-566", - "TagKey-3481": "TagValue-320", - "TagKey-4926": "TagValue-1187", - "TagKey-751": "TagValue-3921", - "TagKey-1866": "TagValue-8559", - "TagKey-3094": "TagValue-9190", - "TagKey-2449": "TagValue-9", - "TagKey-8379": "TagValue-164", - "TagKey-7470": "TagValue-2205", - "TagKey-4236": "TagValue-3698", - "TagKey-5316": "TagValue-2725" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "subscriptionId": "3919658b-68ae-4509-8c17-6a2238340ae7", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "displayName": "CacheTeam - Austin Tolani", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -56,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRG-761?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/testRG-6394?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "43", "Content-Type": "application/json", - "traceparent": "00-523d87d4c08d1b4f9a05a79a7c4f5aba-92fff2cc538a8849-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9e9fb65646b17629a4bdbc2b59ca915e", + "traceparent": "00-e9502badb62d05d63c6b5ff58d624b42-7d2f865579a480d1-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d4b50a5fecb68c07af64cb2ab26192e3", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -77,21 +64,21 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "239", + "Content-Length": "241", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 06:01:00 GMT", + "Date": "Wed, 26 Oct 2022 07:18:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ebde4d2c-3a04-4403-b7c2-a7387decddac", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "ebde4d2c-3a04-4403-b7c2-a7387decddac", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T060101Z:ebde4d2c-3a04-4403-b7c2-a7387decddac" + "x-ms-correlation-request-id": "a9733116-c221-42fa-ba1b-babfc50371fc", + "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-request-id": "a9733116-c221-42fa-ba1b-babfc50371fc", + "x-ms-routing-request-id": "WESTUS2:20221026T071858Z:a9733116-c221-42fa-ba1b-babfc50371fc" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-761", - "name": "testRG-761", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-6394", + "name": "testRG-6394", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "tags": { @@ -103,16 +90,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-761/providers/Microsoft.Cache/redis/RedisSchedules9469?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-6394/providers/Microsoft.Cache/redis/RedisSchedules5538?api-version=2022-06-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "87", "Content-Type": "application/json", - "traceparent": "00-5e2b3d37624f0b4b9d8aba8f38f17135-f49d060202991f4f-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "11e008219ab6d7c0906d99d3cb693d76", + "traceparent": "00-967d1af8b87dfc317c7fb66b308b9c1e-3723551079e2f8f5-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c0f41b66b8624278319e93c88fbf8fdf", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -127,33 +114,33 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "11e008219ab6d7c0906d99d3cb693d76", - "Content-Length": "828", + "client-request-id": "c0f41b66b8624278319e93c88fbf8fdf", + "Content-Length": "826", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 06:01:12 GMT", + "Date": "Wed, 26 Oct 2022 07:18:59 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-761/providers/Microsoft.Cache/redis/RedisSchedules9469?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-6394/providers/Microsoft.Cache/redis/RedisSchedules5538?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f561fa27-b495-4a89-8fec-9426dce028d3", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "54561289-1b95-4caa-be3f-465bcc572fda", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T060112Z:f561fa27-b495-4a89-8fec-9426dce028d3", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "44047afe-4e85-463e-8174-dc997b8c1096", + "x-ms-ratelimit-remaining-subscription-writes": "1190", + "x-ms-request-id": "d69778a9-2934-4ba0-bcec-c325127b1861", + "x-ms-routing-request-id": "WESTUS2:20221026T071900Z:44047afe-4e85-463e-8174-dc997b8c1096", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-761/providers/Microsoft.Cache/Redis/RedisSchedules9469", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-6394/providers/Microsoft.Cache/Redis/RedisSchedules5538", "location": "East US", - "name": "RedisSchedules9469", + "name": "RedisSchedules5538", "type": "Microsoft.Cache/Redis", "tags": {}, "properties": { "provisioningState": "Creating", - "redisVersion": "4.0.14", + "redisVersion": "6.0", "sku": { "name": "Premium", "family": "P", @@ -183,7 +170,7 @@ "primaryKey": "Sanitized", "secondaryKey": "Sanitized" }, - "hostName": "RedisSchedules9469.redis.cache.windows.net", + "hostName": "RedisSchedules5538.redis.cache.windows.net", "port": 6379, "sslPort": 6380, "linkedServers": [] @@ -191,38 +178,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5e2b3d37624f0b4b9d8aba8f38f17135-93b80b77c58e4843-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f448bd1ace6c1ca0dec621d990a2d853", + "traceparent": "00-967d1af8b87dfc317c7fb66b308b9c1e-adcd2f11c22f735c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b542b77b7bb051fd3d91844e73c41fa4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "f448bd1ace6c1ca0dec621d990a2d853", + "client-request-id": "b542b77b7bb051fd3d91844e73c41fa4", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:01:13 GMT", + "Date": "Wed, 26 Oct 2022 07:18:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c7390857-bb91-4a2f-91c1-82a7507936a1", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "76d882cb-1d2b-4742-aa46-90c7c792baf1", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T060113Z:c7390857-bb91-4a2f-91c1-82a7507936a1", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "d3753419-9cc3-46b6-bb8d-27bd653bf2bd", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "ed99e7b0-8325-4409-bc87-1c65250fb35d", + "x-ms-routing-request-id": "WESTUS2:20221026T071900Z:d3753419-9cc3-46b6-bb8d-27bd653bf2bd", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda", - "name": "54561289-1b95-4caa-be3f-465bcc572fda", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861", + "name": "d69778a9-2934-4ba0-bcec-c325127b1861", "status": "InProgress", "startTime": null, "endTime": null, @@ -232,38 +219,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5e2b3d37624f0b4b9d8aba8f38f17135-78582a9b3988024a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "24d8b57f8e22ce9d96b62018fd4318e9", + "traceparent": "00-967d1af8b87dfc317c7fb66b308b9c1e-bbca621202fbfb18-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1d394b3b54056b35794e2e3975741d57", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "24d8b57f8e22ce9d96b62018fd4318e9", + "client-request-id": "1d394b3b54056b35794e2e3975741d57", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:01:14 GMT", + "Date": "Wed, 26 Oct 2022 07:19:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3b506fec-7de5-4616-972c-6a9347289706", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "acd5b2d1-de6d-429f-b7ce-800be88a0db4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T060115Z:3b506fec-7de5-4616-972c-6a9347289706", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "42eaa6b8-a9b9-4eaf-b0c0-06c0de5d261e", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "8f65ae5e-c8d8-4401-a2b9-fabdf5db69c9", + "x-ms-routing-request-id": "WESTUS2:20221026T071901Z:42eaa6b8-a9b9-4eaf-b0c0-06c0de5d261e", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda", - "name": "54561289-1b95-4caa-be3f-465bcc572fda", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861", + "name": "d69778a9-2934-4ba0-bcec-c325127b1861", "status": "InProgress", "startTime": null, "endTime": null, @@ -273,38 +260,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5e2b3d37624f0b4b9d8aba8f38f17135-c16610a776c7404d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0eb821ca4821b20a0453f1a331999a4d", + "traceparent": "00-967d1af8b87dfc317c7fb66b308b9c1e-eb01889dc9cfa7e9-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d84c3e46d97dfc2e463a51b7765432cd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "0eb821ca4821b20a0453f1a331999a4d", + "client-request-id": "d84c3e46d97dfc2e463a51b7765432cd", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:01:15 GMT", + "Date": "Wed, 26 Oct 2022 07:19:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "770607e0-e88e-4667-ab6e-3c28d607f890", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "ea967988-3fed-4464-b64a-666b77220abe", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T060116Z:770607e0-e88e-4667-ab6e-3c28d607f890", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "e7e2e506-49d0-4da0-bdcc-5abd041fead7", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "c2e07f0f-1408-4d4a-b273-da0cb4affbcb", + "x-ms-routing-request-id": "WESTUS2:20221026T071902Z:e7e2e506-49d0-4da0-bdcc-5abd041fead7", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda", - "name": "54561289-1b95-4caa-be3f-465bcc572fda", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861", + "name": "d69778a9-2934-4ba0-bcec-c325127b1861", "status": "InProgress", "startTime": null, "endTime": null, @@ -314,38 +301,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5e2b3d37624f0b4b9d8aba8f38f17135-7e222f9ea2c19841-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0afe49c47dce8c551f795eb5ad881f9b", + "traceparent": "00-967d1af8b87dfc317c7fb66b308b9c1e-b9e3ca9a9d59a82b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d9c89e083ba0264f81d63c624dc3dcc8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "0afe49c47dce8c551f795eb5ad881f9b", + "client-request-id": "d9c89e083ba0264f81d63c624dc3dcc8", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:01:17 GMT", + "Date": "Wed, 26 Oct 2022 07:19:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7777c0ba-15c5-4558-b705-4fe79a2f8a96", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "040601a7-b2e8-4a64-be21-5b4f17ea9372", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T060117Z:7777c0ba-15c5-4558-b705-4fe79a2f8a96", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "1b1a0d03-c8e0-4cd1-a0e8-3f718136d2a7", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "d6b26138-55b8-4398-9ffe-9d4348a007bc", + "x-ms-routing-request-id": "WESTUS2:20221026T071903Z:1b1a0d03-c8e0-4cd1-a0e8-3f718136d2a7", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda", - "name": "54561289-1b95-4caa-be3f-465bcc572fda", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861", + "name": "d69778a9-2934-4ba0-bcec-c325127b1861", "status": "InProgress", "startTime": null, "endTime": null, @@ -355,38 +342,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5e2b3d37624f0b4b9d8aba8f38f17135-c07d0d309339e443-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6e0e38aecaea3632aa2620ce9df99dfd", + "traceparent": "00-967d1af8b87dfc317c7fb66b308b9c1e-5089332d7d739efe-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "35072c74467861261c3cd7ca037ef525", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "6e0e38aecaea3632aa2620ce9df99dfd", + "client-request-id": "35072c74467861261c3cd7ca037ef525", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:01:19 GMT", + "Date": "Wed, 26 Oct 2022 07:19:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1c1dbfed-0536-4516-aa0f-201254f7f86c", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "7606c60e-362e-4414-9539-54f32e6fc40f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T060120Z:1c1dbfed-0536-4516-aa0f-201254f7f86c", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "30ac5d73-8026-483e-94a8-a20403592df4", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "34044523-7db7-422c-98d7-0fa618057190", + "x-ms-routing-request-id": "WESTUS2:20221026T071906Z:30ac5d73-8026-483e-94a8-a20403592df4", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda", - "name": "54561289-1b95-4caa-be3f-465bcc572fda", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861", + "name": "d69778a9-2934-4ba0-bcec-c325127b1861", "status": "InProgress", "startTime": null, "endTime": null, @@ -396,38 +383,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5e2b3d37624f0b4b9d8aba8f38f17135-e4b9bd73b4473046-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b353d21c0d454d1acb2ceea7ea55047c", + "traceparent": "00-967d1af8b87dfc317c7fb66b308b9c1e-aed7516548fa8746-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d631601b43ac0ab7ee2556a79dcbaf82", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "b353d21c0d454d1acb2ceea7ea55047c", + "client-request-id": "d631601b43ac0ab7ee2556a79dcbaf82", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:01:23 GMT", + "Date": "Wed, 26 Oct 2022 07:19:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7c0e2df8-226c-4a50-8a1d-f7de8157c95a", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "fc72a795-7226-4df7-99d4-4c2475025671", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T060124Z:7c0e2df8-226c-4a50-8a1d-f7de8157c95a", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "8bd34e04-f3a5-46ce-a193-3b4e4decc275", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "40484fd8-33e4-4d2a-8bfb-94e14681182f", + "x-ms-routing-request-id": "WESTUS2:20221026T071910Z:8bd34e04-f3a5-46ce-a193-3b4e4decc275", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda", - "name": "54561289-1b95-4caa-be3f-465bcc572fda", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861", + "name": "d69778a9-2934-4ba0-bcec-c325127b1861", "status": "InProgress", "startTime": null, "endTime": null, @@ -437,38 +424,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5e2b3d37624f0b4b9d8aba8f38f17135-8dc626853b45a94f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f8f555342c8afa6317c760a85d86ee26", + "traceparent": "00-967d1af8b87dfc317c7fb66b308b9c1e-c70237c4548e0eb2-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4942895efd4cc1557766bc6364842303", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "f8f555342c8afa6317c760a85d86ee26", + "client-request-id": "4942895efd4cc1557766bc6364842303", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:01:32 GMT", + "Date": "Wed, 26 Oct 2022 07:19:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0a117b66-1d4a-401b-b5eb-ee5fd7299beb", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "cb7ca33d-1f7b-4c24-a5b3-34120ace04f1", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T060132Z:0a117b66-1d4a-401b-b5eb-ee5fd7299beb", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "8ab5bbc4-77c4-41ad-a5e8-2762b3ae85ce", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "2aafbd4e-775e-443e-8758-af6ac05a7ea5", + "x-ms-routing-request-id": "WESTUS2:20221026T071918Z:8ab5bbc4-77c4-41ad-a5e8-2762b3ae85ce", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda", - "name": "54561289-1b95-4caa-be3f-465bcc572fda", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861", + "name": "d69778a9-2934-4ba0-bcec-c325127b1861", "status": "InProgress", "startTime": null, "endTime": null, @@ -478,38 +465,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5e2b3d37624f0b4b9d8aba8f38f17135-d6c32ec54668c749-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "da9961dc6b34a0561ec1a2bddb8a4b54", + "traceparent": "00-967d1af8b87dfc317c7fb66b308b9c1e-b6b37b296df4c3a2-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ec4717e10592311b75fd4652ef7fc451", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "da9961dc6b34a0561ec1a2bddb8a4b54", + "client-request-id": "ec4717e10592311b75fd4652ef7fc451", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:01:49 GMT", + "Date": "Wed, 26 Oct 2022 07:19:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f8846cc6-b82f-43af-85c3-07e8fec82509", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "1c99d304-4076-4b80-8fe9-76d186765ca4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T060149Z:f8846cc6-b82f-43af-85c3-07e8fec82509", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "54889584-648c-4fe8-beba-a5991c6f453d", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "ee71fbcf-2b37-40cc-8163-1b7bb89356a9", + "x-ms-routing-request-id": "WESTUS2:20221026T071934Z:54889584-648c-4fe8-beba-a5991c6f453d", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda", - "name": "54561289-1b95-4caa-be3f-465bcc572fda", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861", + "name": "d69778a9-2934-4ba0-bcec-c325127b1861", "status": "InProgress", "startTime": null, "endTime": null, @@ -519,38 +506,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5e2b3d37624f0b4b9d8aba8f38f17135-552acb48851cd648-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "479aa421a404f0726f599c7dad71ef45", + "traceparent": "00-967d1af8b87dfc317c7fb66b308b9c1e-9d62d11d0b5f4844-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "796c548dab3c1dd80a6f5e468654a66a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "479aa421a404f0726f599c7dad71ef45", + "client-request-id": "796c548dab3c1dd80a6f5e468654a66a", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:02:21 GMT", + "Date": "Wed, 26 Oct 2022 07:20:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f8737a4a-9f51-4f43-b15f-aa6d465e972d", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "1e2c091e-b607-4691-85b9-cfb9ed9dfbe1", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T060221Z:f8737a4a-9f51-4f43-b15f-aa6d465e972d", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "7bd41437-de06-4e6c-9ea4-9b07ca53b7f9", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "b46aff9f-a7b4-42a6-9abc-e41ccc23b2da", + "x-ms-routing-request-id": "WESTUS2:20221026T072006Z:7bd41437-de06-4e6c-9ea4-9b07ca53b7f9", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda", - "name": "54561289-1b95-4caa-be3f-465bcc572fda", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861", + "name": "d69778a9-2934-4ba0-bcec-c325127b1861", "status": "InProgress", "startTime": null, "endTime": null, @@ -560,38 +547,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5e2b3d37624f0b4b9d8aba8f38f17135-cfaca4b4e73c0d4f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "89cac83d29bbc947ff54dac989a61e8c", + "traceparent": "00-967d1af8b87dfc317c7fb66b308b9c1e-d0baefbc3a823813-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "85c65301c28458f06e11d44fb602d2f8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "89cac83d29bbc947ff54dac989a61e8c", + "client-request-id": "85c65301c28458f06e11d44fb602d2f8", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:02:53 GMT", + "Date": "Wed, 26 Oct 2022 07:20:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "231c0ab5-a981-470d-9990-0a43b56e4317", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "7af53828-22f9-4093-a946-5043844a438c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T060254Z:231c0ab5-a981-470d-9990-0a43b56e4317", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "2e452e38-5938-4981-808f-3739306fb81a", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "fe60bd0f-9a80-4f7c-9c3f-c58befc3ada6", + "x-ms-routing-request-id": "WESTUS2:20221026T072038Z:2e452e38-5938-4981-808f-3739306fb81a", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda", - "name": "54561289-1b95-4caa-be3f-465bcc572fda", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861", + "name": "d69778a9-2934-4ba0-bcec-c325127b1861", "status": "InProgress", "startTime": null, "endTime": null, @@ -601,38 +588,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5e2b3d37624f0b4b9d8aba8f38f17135-299c0717f5706143-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b9860b7ba7ec3822eea96bdbced9f3ac", + "traceparent": "00-967d1af8b87dfc317c7fb66b308b9c1e-54711f8cb7606dab-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0fd66ba1aa1835c63e29e123a7d4aa20", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "b9860b7ba7ec3822eea96bdbced9f3ac", + "client-request-id": "0fd66ba1aa1835c63e29e123a7d4aa20", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:03:25 GMT", + "Date": "Wed, 26 Oct 2022 07:21:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c4f1bffc-9db0-4c02-bd7a-1e0c0ef59588", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "66176d06-6e5a-433f-b78b-8d71aef34563", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T060326Z:c4f1bffc-9db0-4c02-bd7a-1e0c0ef59588", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "94f373b1-fb27-474d-a831-9220e49585c8", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "a3b73f07-5d17-4696-ad6e-2914c27222e9", + "x-ms-routing-request-id": "WESTUS2:20221026T072110Z:94f373b1-fb27-474d-a831-9220e49585c8", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda", - "name": "54561289-1b95-4caa-be3f-465bcc572fda", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861", + "name": "d69778a9-2934-4ba0-bcec-c325127b1861", "status": "InProgress", "startTime": null, "endTime": null, @@ -642,38 +629,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5e2b3d37624f0b4b9d8aba8f38f17135-a93f87d590a25844-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "137f5dd1c2bff7995dd148afc9a866c8", + "traceparent": "00-967d1af8b87dfc317c7fb66b308b9c1e-47644868076d4652-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "9b51dc563eb9cacd63130b2ad7896607", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "137f5dd1c2bff7995dd148afc9a866c8", + "client-request-id": "9b51dc563eb9cacd63130b2ad7896607", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:03:58 GMT", + "Date": "Wed, 26 Oct 2022 07:21:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0c68720d-634c-4f43-9ed8-b06053f0cd5b", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "f4c131dd-a493-4ce7-8059-54e6ed23e5dd", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T060358Z:0c68720d-634c-4f43-9ed8-b06053f0cd5b", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "21eb3be7-d68d-4bf9-9c11-1d082831dcfd", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "3a978807-122f-4856-9a6c-4b49622bd71a", + "x-ms-routing-request-id": "WESTUS2:20221026T072142Z:21eb3be7-d68d-4bf9-9c11-1d082831dcfd", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda", - "name": "54561289-1b95-4caa-be3f-465bcc572fda", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861", + "name": "d69778a9-2934-4ba0-bcec-c325127b1861", "status": "InProgress", "startTime": null, "endTime": null, @@ -683,38 +670,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5e2b3d37624f0b4b9d8aba8f38f17135-fd87acc500a85a48-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a201103a36eb9658a6929a12be6bfa25", + "traceparent": "00-967d1af8b87dfc317c7fb66b308b9c1e-84c3b510b233bcd5-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1ba4669c967e56518c91475ae1cdb199", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "a201103a36eb9658a6929a12be6bfa25", + "client-request-id": "1ba4669c967e56518c91475ae1cdb199", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:04:30 GMT", + "Date": "Wed, 26 Oct 2022 07:22:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6eff731a-e757-41ba-a999-ff6d031f1381", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "27b631e0-6076-4053-88d0-5633b995ca8e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T060431Z:6eff731a-e757-41ba-a999-ff6d031f1381", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "657520d4-8965-4984-adf0-4642990cbdf8", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "f7ebf4bd-c896-42bb-a6f0-b27b11819ff0", + "x-ms-routing-request-id": "WESTUS2:20221026T072214Z:657520d4-8965-4984-adf0-4642990cbdf8", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda", - "name": "54561289-1b95-4caa-be3f-465bcc572fda", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861", + "name": "d69778a9-2934-4ba0-bcec-c325127b1861", "status": "InProgress", "startTime": null, "endTime": null, @@ -724,38 +711,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5e2b3d37624f0b4b9d8aba8f38f17135-8b60156b99c7804a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "2cf82e610a26b9cd728e5b1a5e726f46", + "traceparent": "00-967d1af8b87dfc317c7fb66b308b9c1e-6799244555c7b975-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "daf8b36636b1633e9e0bac049f9c5db4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "2cf82e610a26b9cd728e5b1a5e726f46", + "client-request-id": "daf8b36636b1633e9e0bac049f9c5db4", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:05:02 GMT", + "Date": "Wed, 26 Oct 2022 07:22:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "12515a25-3115-47ed-8e6f-88ae89524d08", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "bac9a16b-c021-404f-9f51-09c769f51124", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T060503Z:12515a25-3115-47ed-8e6f-88ae89524d08", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "408b1ae1-56ac-409c-a52d-8257fb52ffb3", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "031be5f9-2348-4a7e-a0e3-0c41f1205e25", + "x-ms-routing-request-id": "WESTUS2:20221026T072247Z:408b1ae1-56ac-409c-a52d-8257fb52ffb3", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda", - "name": "54561289-1b95-4caa-be3f-465bcc572fda", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861", + "name": "d69778a9-2934-4ba0-bcec-c325127b1861", "status": "InProgress", "startTime": null, "endTime": null, @@ -765,38 +752,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5e2b3d37624f0b4b9d8aba8f38f17135-9f865e5ac069b648-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "bea1a34351d79ac104e86d2d278639f1", + "traceparent": "00-967d1af8b87dfc317c7fb66b308b9c1e-ef60057707920696-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4086dac28f30bfa28afa0f28f672e996", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "bea1a34351d79ac104e86d2d278639f1", + "client-request-id": "4086dac28f30bfa28afa0f28f672e996", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:05:35 GMT", + "Date": "Wed, 26 Oct 2022 07:23:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dabad3f3-e4c5-49fc-a92d-e6fc34ccfa4e", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "b234cb27-4e9f-42a7-9b06-726cc114c959", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T060535Z:dabad3f3-e4c5-49fc-a92d-e6fc34ccfa4e", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "4587711e-df58-4a2c-bd13-3b2ab32a2431", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "e86fcc89-ae94-47b7-9d61-28a6ecbb0a6a", + "x-ms-routing-request-id": "WESTUS2:20221026T072319Z:4587711e-df58-4a2c-bd13-3b2ab32a2431", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda", - "name": "54561289-1b95-4caa-be3f-465bcc572fda", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861", + "name": "d69778a9-2934-4ba0-bcec-c325127b1861", "status": "InProgress", "startTime": null, "endTime": null, @@ -806,38 +793,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5e2b3d37624f0b4b9d8aba8f38f17135-f03193347a323b4d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9a4d22d639b02fa142482f5cda3e3833", + "traceparent": "00-967d1af8b87dfc317c7fb66b308b9c1e-4f02b0f291900a4f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "23c472628c91665627417c72ea4db7f0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "9a4d22d639b02fa142482f5cda3e3833", + "client-request-id": "23c472628c91665627417c72ea4db7f0", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:06:07 GMT", + "Date": "Wed, 26 Oct 2022 07:23:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fffa403f-b8f9-4436-922a-b3c2387dcee8", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "8a124d41-65c3-4c44-95a1-5f10986125c3", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T060608Z:fffa403f-b8f9-4436-922a-b3c2387dcee8", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "3b58feb5-aad8-4ef1-962b-9cba3066db77", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "2c2cc1db-39ae-4156-97b7-7e3c8a8a6987", + "x-ms-routing-request-id": "WESTUS2:20221026T072351Z:3b58feb5-aad8-4ef1-962b-9cba3066db77", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda", - "name": "54561289-1b95-4caa-be3f-465bcc572fda", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861", + "name": "d69778a9-2934-4ba0-bcec-c325127b1861", "status": "InProgress", "startTime": null, "endTime": null, @@ -847,38 +834,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5e2b3d37624f0b4b9d8aba8f38f17135-f4920cc7ae5e4447-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1acf54233cca104e6d5d283e9da092eb", + "traceparent": "00-967d1af8b87dfc317c7fb66b308b9c1e-bfc3e93043223036-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "079792337046d76810384fb727166c2b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "1acf54233cca104e6d5d283e9da092eb", + "client-request-id": "079792337046d76810384fb727166c2b", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:06:40 GMT", + "Date": "Wed, 26 Oct 2022 07:24:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d5db9464-abbf-42a1-833e-7d2e645ebe85", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "e6396645-b9db-457e-a5a1-725063792046", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T060640Z:d5db9464-abbf-42a1-833e-7d2e645ebe85", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "6910e222-99c9-4518-856e-56e617bb77e7", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "1a012054-95a9-4fb1-99a9-331e474120c9", + "x-ms-routing-request-id": "WESTUS2:20221026T072423Z:6910e222-99c9-4518-856e-56e617bb77e7", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda", - "name": "54561289-1b95-4caa-be3f-465bcc572fda", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861", + "name": "d69778a9-2934-4ba0-bcec-c325127b1861", "status": "InProgress", "startTime": null, "endTime": null, @@ -888,38 +875,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5e2b3d37624f0b4b9d8aba8f38f17135-ffac0fdaa141f342-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3c436a54d425099601717b8f2165c0c6", + "traceparent": "00-967d1af8b87dfc317c7fb66b308b9c1e-04a6018ed3120db0-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2da215223ad73623831f19ef1230d53d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "3c436a54d425099601717b8f2165c0c6", + "client-request-id": "2da215223ad73623831f19ef1230d53d", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:07:12 GMT", + "Date": "Wed, 26 Oct 2022 07:24:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "824f62ed-8658-4a96-a824-0416dcb840ac", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "f7fb323a-22b9-4252-957b-b4468465996e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T060713Z:824f62ed-8658-4a96-a824-0416dcb840ac", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "971aa6bf-e725-4fa0-8fa7-1332ec20ae88", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "6ccb637d-0158-44e9-a889-337b261fc0b2", + "x-ms-routing-request-id": "WESTUS2:20221026T072455Z:971aa6bf-e725-4fa0-8fa7-1332ec20ae88", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda", - "name": "54561289-1b95-4caa-be3f-465bcc572fda", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861", + "name": "d69778a9-2934-4ba0-bcec-c325127b1861", "status": "InProgress", "startTime": null, "endTime": null, @@ -929,38 +916,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5e2b3d37624f0b4b9d8aba8f38f17135-cd06f5b3db9eab47-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d30939b01eb79a27d43d2d53116391a2", + "traceparent": "00-967d1af8b87dfc317c7fb66b308b9c1e-21ec7c3f9b57f5c2-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "64f51e42e2daf14f09ec12583c9e3f11", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "d30939b01eb79a27d43d2d53116391a2", + "client-request-id": "64f51e42e2daf14f09ec12583c9e3f11", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:07:45 GMT", + "Date": "Wed, 26 Oct 2022 07:25:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c3b692db-73f7-442b-892d-b86b3b2d5f39", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "f374a6af-8279-4833-87c2-08c604ad1fed", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T060746Z:c3b692db-73f7-442b-892d-b86b3b2d5f39", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "8dff5958-54a1-4200-b739-a9518e0142d3", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "98fec541-788b-443d-abc1-e0ae60243277", + "x-ms-routing-request-id": "WESTUS2:20221026T072527Z:8dff5958-54a1-4200-b739-a9518e0142d3", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda", - "name": "54561289-1b95-4caa-be3f-465bcc572fda", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861", + "name": "d69778a9-2934-4ba0-bcec-c325127b1861", "status": "InProgress", "startTime": null, "endTime": null, @@ -970,38 +957,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5e2b3d37624f0b4b9d8aba8f38f17135-5ec5738a0b1abe4c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "700744b6fcfa4f0ebec51959c1bfef08", + "traceparent": "00-967d1af8b87dfc317c7fb66b308b9c1e-7b3932e7c3091306-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d54f51d48aaaf8186f6183275779c5e0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "700744b6fcfa4f0ebec51959c1bfef08", + "client-request-id": "d54f51d48aaaf8186f6183275779c5e0", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:08:18 GMT", + "Date": "Wed, 26 Oct 2022 07:25:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c537306a-3179-49a4-89cb-525a5d7aaf26", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "726db1eb-2012-4c18-acd3-b4d794214b02", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T060818Z:c537306a-3179-49a4-89cb-525a5d7aaf26", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "95d8d02d-21fc-4e00-8f98-b64281a227ec", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "a1581fef-227f-467c-8cc3-9da2fabe2e22", + "x-ms-routing-request-id": "WESTUS2:20221026T072559Z:95d8d02d-21fc-4e00-8f98-b64281a227ec", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda", - "name": "54561289-1b95-4caa-be3f-465bcc572fda", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861", + "name": "d69778a9-2934-4ba0-bcec-c325127b1861", "status": "InProgress", "startTime": null, "endTime": null, @@ -1011,38 +998,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5e2b3d37624f0b4b9d8aba8f38f17135-94db81f01b026e4a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "648d619cbf96353342a968e7a643f79d", + "traceparent": "00-967d1af8b87dfc317c7fb66b308b9c1e-1fbde32c13d064aa-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0874126308214050c5b024eb27cbf9e4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "648d619cbf96353342a968e7a643f79d", + "client-request-id": "0874126308214050c5b024eb27cbf9e4", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:08:50 GMT", + "Date": "Wed, 26 Oct 2022 07:26:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bf6b8054-1410-4fea-ae3b-1496e339fe86", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "13b134f9-9cba-4972-bb8c-0899f276273d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T060850Z:bf6b8054-1410-4fea-ae3b-1496e339fe86", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "07501cd3-fd09-4b6d-93f9-5da6ecdaa6ce", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "0f7e40ac-a56a-4476-9d73-15152ca9bbee", + "x-ms-routing-request-id": "WESTUS2:20221026T072632Z:07501cd3-fd09-4b6d-93f9-5da6ecdaa6ce", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda", - "name": "54561289-1b95-4caa-be3f-465bcc572fda", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861", + "name": "d69778a9-2934-4ba0-bcec-c325127b1861", "status": "InProgress", "startTime": null, "endTime": null, @@ -1052,38 +1039,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5e2b3d37624f0b4b9d8aba8f38f17135-76d6e85760f7e646-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "dcd9d8df505db4cb2bba14f105ced815", + "traceparent": "00-967d1af8b87dfc317c7fb66b308b9c1e-e5f8b20d8c666189-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c11a08dfffe1b89205fcf4795e289a8f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "dcd9d8df505db4cb2bba14f105ced815", + "client-request-id": "c11a08dfffe1b89205fcf4795e289a8f", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:09:23 GMT", + "Date": "Wed, 26 Oct 2022 07:27:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "627a494f-3ec6-445a-8e01-5e1cd0fdf86e", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "f0697ade-29e8-4854-a90e-cf8a01616f8c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T060923Z:627a494f-3ec6-445a-8e01-5e1cd0fdf86e", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "bd080ad0-73ea-4165-b8a0-22aecbd62fc9", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "5d8f4e5c-b7d9-4de6-9712-e4cfe7950850", + "x-ms-routing-request-id": "WESTUS2:20221026T072704Z:bd080ad0-73ea-4165-b8a0-22aecbd62fc9", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda", - "name": "54561289-1b95-4caa-be3f-465bcc572fda", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861", + "name": "d69778a9-2934-4ba0-bcec-c325127b1861", "status": "InProgress", "startTime": null, "endTime": null, @@ -1093,38 +1080,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5e2b3d37624f0b4b9d8aba8f38f17135-6303713d3f8f194b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "afb6254d2dd6f70c10d12d509426a87b", + "traceparent": "00-967d1af8b87dfc317c7fb66b308b9c1e-afd34c4f78c390ba-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2af43227362accef000e0ffa662dd1a4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "afb6254d2dd6f70c10d12d509426a87b", + "client-request-id": "2af43227362accef000e0ffa662dd1a4", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:09:55 GMT", + "Date": "Wed, 26 Oct 2022 07:27:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bc11685a-b8d3-4b2b-b6c5-79f720e4f3df", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "c8e1e4c1-171c-41ba-b4fa-723a25416055", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T060955Z:bc11685a-b8d3-4b2b-b6c5-79f720e4f3df", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "aeff725e-62b1-43a2-9df2-f6f623a7ea45", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "60ec3721-dc95-4bad-a5e3-accdb40fd0a5", + "x-ms-routing-request-id": "WESTUS2:20221026T072736Z:aeff725e-62b1-43a2-9df2-f6f623a7ea45", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda", - "name": "54561289-1b95-4caa-be3f-465bcc572fda", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861", + "name": "d69778a9-2934-4ba0-bcec-c325127b1861", "status": "InProgress", "startTime": null, "endTime": null, @@ -1134,38 +1121,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5e2b3d37624f0b4b9d8aba8f38f17135-02fd61cf0d834443-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e8797ccd12e54caa95d839dbaa423074", + "traceparent": "00-967d1af8b87dfc317c7fb66b308b9c1e-253e4275dfc40a79-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4e479e68045f63fe80bc032513d7e19d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "e8797ccd12e54caa95d839dbaa423074", + "client-request-id": "4e479e68045f63fe80bc032513d7e19d", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:10:27 GMT", + "Date": "Wed, 26 Oct 2022 07:28:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "acb79f68-9beb-4f3a-a396-80211ea9ca28", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "769030cd-f74a-4686-a5a5-4e15dcce2786", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T061027Z:acb79f68-9beb-4f3a-a396-80211ea9ca28", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "19c23894-3b59-4db8-82f1-0776ee38c1bd", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "f6e6b400-f855-4eaf-bc76-a153de72094a", + "x-ms-routing-request-id": "WESTUS2:20221026T072808Z:19c23894-3b59-4db8-82f1-0776ee38c1bd", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda", - "name": "54561289-1b95-4caa-be3f-465bcc572fda", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861", + "name": "d69778a9-2934-4ba0-bcec-c325127b1861", "status": "InProgress", "startTime": null, "endTime": null, @@ -1175,38 +1162,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5e2b3d37624f0b4b9d8aba8f38f17135-4beb3e42f44ce148-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "809a52d1488cb1c6cce2cb8c227b2004", + "traceparent": "00-967d1af8b87dfc317c7fb66b308b9c1e-b7d8c0c22fa8f577-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f4c49416ced6a9ba184dc0d2f09752d8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "809a52d1488cb1c6cce2cb8c227b2004", + "client-request-id": "f4c49416ced6a9ba184dc0d2f09752d8", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:11:00 GMT", + "Date": "Wed, 26 Oct 2022 07:28:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c56e69f1-2e62-4867-9957-80549634767e", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "a438e43a-efe8-4e46-b5a2-976dd42516bc", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T061100Z:c56e69f1-2e62-4867-9957-80549634767e", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "02141766-3a59-4152-8069-86ab8743dc4a", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "73986d07-5f0e-474d-8b20-1722132107af", + "x-ms-routing-request-id": "WESTUS2:20221026T072840Z:02141766-3a59-4152-8069-86ab8743dc4a", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda", - "name": "54561289-1b95-4caa-be3f-465bcc572fda", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861", + "name": "d69778a9-2934-4ba0-bcec-c325127b1861", "status": "InProgress", "startTime": null, "endTime": null, @@ -1216,38 +1203,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5e2b3d37624f0b4b9d8aba8f38f17135-4b28a90468858f4c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "88249912ef543a2f7b6919fdf4304cce", + "traceparent": "00-967d1af8b87dfc317c7fb66b308b9c1e-d0b210adb59d604c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c010502a4be0222f3390a96e33cab828", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "88249912ef543a2f7b6919fdf4304cce", + "client-request-id": "c010502a4be0222f3390a96e33cab828", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:11:31 GMT", + "Date": "Wed, 26 Oct 2022 07:29:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e845d541-8ac0-4c0e-af92-a0b526847aaf", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "c12dba9f-3834-4cb8-819b-d8ad66b9bb80", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T061132Z:e845d541-8ac0-4c0e-af92-a0b526847aaf", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "c56bfa53-646e-473e-a928-2449b6d6985a", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "e8896292-9d42-4269-a32b-b2ae84c7c299", + "x-ms-routing-request-id": "WESTUS2:20221026T072912Z:c56bfa53-646e-473e-a928-2449b6d6985a", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda", - "name": "54561289-1b95-4caa-be3f-465bcc572fda", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861", + "name": "d69778a9-2934-4ba0-bcec-c325127b1861", "status": "InProgress", "startTime": null, "endTime": null, @@ -1257,38 +1244,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5e2b3d37624f0b4b9d8aba8f38f17135-00612ce22aefb841-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "417fb9a0288c85eeb5c71c03461d2a1a", + "traceparent": "00-967d1af8b87dfc317c7fb66b308b9c1e-b378d92524c09356-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d1e4722ddd6999cde39e3611432c73e8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "417fb9a0288c85eeb5c71c03461d2a1a", + "client-request-id": "d1e4722ddd6999cde39e3611432c73e8", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:12:04 GMT", + "Date": "Wed, 26 Oct 2022 07:29:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d8d47e5b-6f6b-4020-ab7d-6c238e27e143", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "d2ecb5d3-619e-43d4-a878-08a5db066151", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T061205Z:d8d47e5b-6f6b-4020-ab7d-6c238e27e143", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "e2315cdf-4b81-4776-ace1-b33954f3fdc8", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "1fe9c2d2-e072-45fa-8582-ec2a3b240c9b", + "x-ms-routing-request-id": "WESTUS2:20221026T072944Z:e2315cdf-4b81-4776-ace1-b33954f3fdc8", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda", - "name": "54561289-1b95-4caa-be3f-465bcc572fda", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861", + "name": "d69778a9-2934-4ba0-bcec-c325127b1861", "status": "InProgress", "startTime": null, "endTime": null, @@ -1298,38 +1285,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5e2b3d37624f0b4b9d8aba8f38f17135-bf0fbd85ee41b44e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "11c934b8a81de11f235f05232ec9bd9b", + "traceparent": "00-967d1af8b87dfc317c7fb66b308b9c1e-b105360555d31f97-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c3fa2b6921c6cabc64a1c045244c754e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "11c934b8a81de11f235f05232ec9bd9b", + "client-request-id": "c3fa2b6921c6cabc64a1c045244c754e", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:12:39 GMT", + "Date": "Wed, 26 Oct 2022 07:30:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dc000c3b-8fbb-44c0-b661-faeb42c17423", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "22fb3315-0cd6-434a-9602-accf4351861d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T061240Z:dc000c3b-8fbb-44c0-b661-faeb42c17423", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "df713fad-f793-453f-8ba4-d4af5669948d", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "e2275ed4-1a39-4f8d-b45d-ce5deb7ca3c2", + "x-ms-routing-request-id": "WESTUS2:20221026T073017Z:df713fad-f793-453f-8ba4-d4af5669948d", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda", - "name": "54561289-1b95-4caa-be3f-465bcc572fda", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861", + "name": "d69778a9-2934-4ba0-bcec-c325127b1861", "status": "InProgress", "startTime": null, "endTime": null, @@ -1339,38 +1326,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5e2b3d37624f0b4b9d8aba8f38f17135-d29b5a11af4d4a40-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "69ecfd95dffce978aa9ed28cd32cf35d", + "traceparent": "00-967d1af8b87dfc317c7fb66b308b9c1e-c1932fb2533d8141-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7da5979480b34d6e8276dc42151ddf07", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "69ecfd95dffce978aa9ed28cd32cf35d", + "client-request-id": "7da5979480b34d6e8276dc42151ddf07", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:13:12 GMT", + "Date": "Wed, 26 Oct 2022 07:30:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fc8ced61-e982-4d47-8cc6-32f8bbd2d34b", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "4686b103-63b1-4359-9c26-ff19af5f5a5e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T061313Z:fc8ced61-e982-4d47-8cc6-32f8bbd2d34b", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "aa45cbe7-2ec1-4280-84b3-99f3667ec931", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "ac49db1d-a705-490a-99bb-50696a1b1b61", + "x-ms-routing-request-id": "WESTUS2:20221026T073049Z:aa45cbe7-2ec1-4280-84b3-99f3667ec931", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda", - "name": "54561289-1b95-4caa-be3f-465bcc572fda", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861", + "name": "d69778a9-2934-4ba0-bcec-c325127b1861", "status": "InProgress", "startTime": null, "endTime": null, @@ -1380,38 +1367,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5e2b3d37624f0b4b9d8aba8f38f17135-dd96301c5073d348-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "bf45ff3e3b66f8b0999d1d2d22ca56ec", + "traceparent": "00-967d1af8b87dfc317c7fb66b308b9c1e-17df4f88101a7b1d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0704c11cf5cf0b61b6196cc71c887497", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "bf45ff3e3b66f8b0999d1d2d22ca56ec", + "client-request-id": "0704c11cf5cf0b61b6196cc71c887497", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:13:44 GMT", + "Date": "Wed, 26 Oct 2022 07:31:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2ced7e52-5c46-429a-9afb-c4463d7476b0", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "326bc903-58e3-49e4-ad71-ef33398efc23", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T061345Z:2ced7e52-5c46-429a-9afb-c4463d7476b0", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "5be40928-26cf-4c77-b890-fa4cd2592404", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "c107b53c-6908-487c-a7b8-eef47ddf38b1", + "x-ms-routing-request-id": "WESTUS2:20221026T073121Z:5be40928-26cf-4c77-b890-fa4cd2592404", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda", - "name": "54561289-1b95-4caa-be3f-465bcc572fda", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861", + "name": "d69778a9-2934-4ba0-bcec-c325127b1861", "status": "InProgress", "startTime": null, "endTime": null, @@ -1421,38 +1408,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5e2b3d37624f0b4b9d8aba8f38f17135-4fc3ec72ad5ee54b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "496d800ac131d81dbcdf667fd5930ef7", + "traceparent": "00-967d1af8b87dfc317c7fb66b308b9c1e-9b4fb5107e4d8e23-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ab7de828f687e934bcad404f4479b546", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "496d800ac131d81dbcdf667fd5930ef7", + "client-request-id": "ab7de828f687e934bcad404f4479b546", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:14:17 GMT", + "Date": "Wed, 26 Oct 2022 07:31:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2f37bd61-c315-45ef-89e6-d9d390308fcd", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "accdf31d-08bf-471e-89a7-effabf225df6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T061418Z:2f37bd61-c315-45ef-89e6-d9d390308fcd", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "fc5eda83-0bbb-4ad8-ad5b-830814634b99", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "6ab11a40-feb3-4005-a85f-4d7ce0f3d282", + "x-ms-routing-request-id": "WESTUS2:20221026T073153Z:fc5eda83-0bbb-4ad8-ad5b-830814634b99", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda", - "name": "54561289-1b95-4caa-be3f-465bcc572fda", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861", + "name": "d69778a9-2934-4ba0-bcec-c325127b1861", "status": "InProgress", "startTime": null, "endTime": null, @@ -1462,38 +1449,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5e2b3d37624f0b4b9d8aba8f38f17135-3a75d97c911fbd45-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "2fe4a76bfe835a344cf3d05fc14ac7df", + "traceparent": "00-967d1af8b87dfc317c7fb66b308b9c1e-65b2ca815abadb24-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6328b9c16e479f7e3599c79913a730fa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "2fe4a76bfe835a344cf3d05fc14ac7df", + "client-request-id": "6328b9c16e479f7e3599c79913a730fa", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:14:50 GMT", + "Date": "Wed, 26 Oct 2022 07:32:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c45bbd75-f093-48ce-880a-9cba50a3d98e", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "55a95c9b-5232-48c1-81c3-09573ddc83ef", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T061450Z:c45bbd75-f093-48ce-880a-9cba50a3d98e", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "e51f8d99-84fd-4d8c-9124-0797a0cd2c06", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "84e92aa3-62f3-4aae-9c43-1060d28e4e12", + "x-ms-routing-request-id": "WESTUS2:20221026T073225Z:e51f8d99-84fd-4d8c-9124-0797a0cd2c06", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda", - "name": "54561289-1b95-4caa-be3f-465bcc572fda", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861", + "name": "d69778a9-2934-4ba0-bcec-c325127b1861", "status": "InProgress", "startTime": null, "endTime": null, @@ -1503,38 +1490,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5e2b3d37624f0b4b9d8aba8f38f17135-ccd87358a0b5df4b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5282e648aabe7d2ce16c0287d5312205", + "traceparent": "00-967d1af8b87dfc317c7fb66b308b9c1e-18ca6d600550055f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2d1a440233a026808c1b4b21b511c73c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "5282e648aabe7d2ce16c0287d5312205", + "client-request-id": "2d1a440233a026808c1b4b21b511c73c", "Content-Length": "352", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:15:21 GMT", + "Date": "Wed, 26 Oct 2022 07:32:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ab08d24f-bf1e-446f-86f2-3c6576265dd7", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-request-id": "2bec1292-b329-4b71-b825-35f214623173", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T061522Z:ab08d24f-bf1e-446f-86f2-3c6576265dd7", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "4759b187-5a99-4ab4-941e-d714feca9abb", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "fe8b7db8-0901-4ec4-8d25-5fe9ea5edd48", + "x-ms-routing-request-id": "WESTUS2:20221026T073257Z:4759b187-5a99-4ab4-941e-d714feca9abb", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/54561289-1b95-4caa-be3f-465bcc572fda", - "name": "54561289-1b95-4caa-be3f-465bcc572fda", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/d69778a9-2934-4ba0-bcec-c325127b1861", + "name": "d69778a9-2934-4ba0-bcec-c325127b1861", "status": "Succeeded", "startTime": null, "endTime": null, @@ -1544,43 +1531,43 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-761/providers/Microsoft.Cache/redis/RedisSchedules9469?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-6394/providers/Microsoft.Cache/redis/RedisSchedules5538?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5e2b3d37624f0b4b9d8aba8f38f17135-eac10971d28f9445-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "7bc2268e26e60b694b13fc3df1be1671", + "traceparent": "00-967d1af8b87dfc317c7fb66b308b9c1e-a3233ca75fd2aef4-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "63052564115fba5069de75ed2e9bd515", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "7bc2268e26e60b694b13fc3df1be1671", - "Content-Length": "778", + "client-request-id": "63052564115fba5069de75ed2e9bd515", + "Content-Length": "776", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 06:15:22 GMT", + "Date": "Wed, 26 Oct 2022 07:32:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "de364c51-6cc3-4c07-9161-7235acd524dc", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "4c16689f-241b-4bbd-9daf-181f9016a25f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T061523Z:de364c51-6cc3-4c07-9161-7235acd524dc", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "3096b2bf-8170-4f05-bb64-dbb2b2ff8462", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "0d1d1073-e78c-4935-8e18-8a1dbfc0f1d2", + "x-ms-routing-request-id": "WESTUS2:20221026T073258Z:3096b2bf-8170-4f05-bb64-dbb2b2ff8462", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-761/providers/Microsoft.Cache/Redis/RedisSchedules9469", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-6394/providers/Microsoft.Cache/Redis/RedisSchedules5538", "location": "East US", - "name": "RedisSchedules9469", + "name": "RedisSchedules5538", "type": "Microsoft.Cache/Redis", "tags": {}, "properties": { "provisioningState": "Succeeded", - "redisVersion": "4.0.14", + "redisVersion": "6.0", "sku": { "name": "Premium", "family": "P", @@ -1607,7 +1594,7 @@ "maxmemory-delta": "642" }, "accessKeys": null, - "hostName": "RedisSchedules9469.redis.cache.windows.net", + "hostName": "RedisSchedules5538.redis.cache.windows.net", "port": 6379, "sslPort": 6380, "linkedServers": [] @@ -1615,16 +1602,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-761/providers/Microsoft.Cache/redis/RedisSchedules9469/patchSchedules/default?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-6394/providers/Microsoft.Cache/redis/RedisSchedules5538/patchSchedules/default?api-version=2022-06-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "175", "Content-Type": "application/json", - "traceparent": "00-470118139005f5478a0e53106d8b8d64-606219814013be44-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ef368618bc11c0387a664e16fcad851b", + "traceparent": "00-616364bdefd05247ee05d486086f4275-04ec22850264f964-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ff4d467d875f8ea63802d62c225ce924", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -1646,25 +1633,25 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "ef368618bc11c0387a664e16fcad851b", - "Content-Length": "437", + "client-request-id": "ff4d467d875f8ea63802d62c225ce924", + "Content-Length": "438", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 06:15:23 GMT", + "Date": "Wed, 26 Oct 2022 07:32:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3138f85a-b508-47e2-b1ca-3978e38574a4", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "d9761d4a-1de0-46ac-9816-d83858cef8ec", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T061524Z:3138f85a-b508-47e2-b1ca-3978e38574a4", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "3599a2df-ff3f-4bc0-9978-e04fa7bdd91c", + "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-request-id": "139e7eca-4f5f-44eb-aebb-cf1542396ee5", + "x-ms-routing-request-id": "WESTUS2:20221026T073258Z:3599a2df-ff3f-4bc0-9978-e04fa7bdd91c", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-761/providers/Microsoft.Cache/Redis/RedisSchedules9469/patchSchedules/default", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-6394/providers/Microsoft.Cache/Redis/RedisSchedules5538/patchSchedules/default", "location": "East US", - "name": "RedisSchedules9469/default", + "name": "RedisSchedules5538/default", "type": "Microsoft.Cache/Redis/PatchSchedules", "properties": { "scheduleEntries": [ @@ -1683,39 +1670,39 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-761/providers/Microsoft.Cache/redis/RedisSchedules9469/patchSchedules/default?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-6394/providers/Microsoft.Cache/redis/RedisSchedules5538/patchSchedules/default?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1d9b8cad6b0f74419363e4d18cb4170d-c0197fd5bfd6624b-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9bd0cad14b8821f97d7606abadee8c22", + "traceparent": "00-238fe3315300527e4f186a4a2249fce3-93cf07f606517d69-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ed348bd1cca1f19bf45fc3c2bd92f7f1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "9bd0cad14b8821f97d7606abadee8c22", - "Content-Length": "437", + "client-request-id": "ed348bd1cca1f19bf45fc3c2bd92f7f1", + "Content-Length": "438", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 06:15:24 GMT", + "Date": "Wed, 26 Oct 2022 07:32:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7f711ece-4060-4b79-966e-14093c93ac48", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-request-id": "60bbaae5-bce1-434e-9af2-b6d1e7522d45", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T061525Z:7f711ece-4060-4b79-966e-14093c93ac48", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "f1a7f55f-ee3a-495c-9bcb-8553257f9a99", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "5145eb4c-cc43-485f-a401-1a1e3a323081", + "x-ms-routing-request-id": "WESTUS2:20221026T073258Z:f1a7f55f-ee3a-495c-9bcb-8553257f9a99", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-761/providers/Microsoft.Cache/Redis/RedisSchedules9469/patchSchedules/default", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-6394/providers/Microsoft.Cache/Redis/RedisSchedules5538/patchSchedules/default", "location": "East US", - "name": "RedisSchedules9469/default", + "name": "RedisSchedules5538/default", "type": "Microsoft.Cache/Redis/PatchSchedules", "properties": { "scheduleEntries": [ @@ -1734,70 +1721,70 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-761/providers/Microsoft.Cache/redis/RedisSchedules9469/patchSchedules/default?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-6394/providers/Microsoft.Cache/redis/RedisSchedules5538/patchSchedules/default?api-version=2022-06-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-180910f785956b4fb9c84ec572c72721-0ff22f4899ddbd48-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4e6e905633fad2f4ed01017fd8520f9d", + "traceparent": "00-3dc8dd7dd38fc4291bda0adb2e3a1370-151de4a9b4f5a4e9-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6ea43545c7c4dddc7f772b5d3a24970c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "4e6e905633fad2f4ed01017fd8520f9d", + "client-request-id": "6ea43545c7c4dddc7f772b5d3a24970c", "Content-Length": "0", - "Date": "Fri, 26 Aug 2022 06:15:25 GMT", + "Date": "Wed, 26 Oct 2022 07:32:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "884d4409-34e5-44a9-971c-367ab1c76745", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-request-id": "a0d29348-ced4-4272-998d-25306255e46b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T061526Z:884d4409-34e5-44a9-971c-367ab1c76745", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "61b3fe4b-61ce-463c-a829-3651845f6403", + "x-ms-ratelimit-remaining-subscription-deletes": "14998", + "x-ms-request-id": "79a71956-495b-4fa6-a86d-9e681c4977f0", + "x-ms-routing-request-id": "WESTUS2:20221026T073258Z:61b3fe4b-61ce-463c-a829-3651845f6403", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-761/providers/Microsoft.Cache/redis/RedisSchedules9469/patchSchedules/default?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-6394/providers/Microsoft.Cache/redis/RedisSchedules5538/patchSchedules/default?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-516a47563009fc468749fb220c89ac4d-439441fa90b19842-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "266ce18e7aeecde98d15729ab68d138b", + "traceparent": "00-726be5879c6cfa9936af0d97936ec079-42c20417244a2120-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a31b51f4e766b074ab5c0bffc3e3d0a5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "266ce18e7aeecde98d15729ab68d138b", + "client-request-id": "a31b51f4e766b074ab5c0bffc3e3d0a5", "Content-Length": "186", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 06:15:26 GMT", + "Date": "Wed, 26 Oct 2022 07:32:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b67048e2-cd27-43c1-9ed5-ea76d7c0b295", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-request-id": "a330370c-2686-4e7f-8d5b-8662896a0b1b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T061527Z:b67048e2-cd27-43c1-9ed5-ea76d7c0b295", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "d781d11d-b4a3-496a-a3d0-3bbd861ea835", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "6e2f2b2d-231a-4727-84bf-79e7656dec04", + "x-ms-routing-request-id": "WESTUS2:20221026T073259Z:d781d11d-b4a3-496a-a3d0-3bbd861ea835", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "There are no patch schedules found for redis cache \u0027RedisSchedules9469\u0027.\r\nRequestID=a330370c-2686-4e7f-8d5b-8662896a0b1b", + "message": "There are no patch schedules found for redis cache \u0027RedisSchedules5538\u0027.\r\nRequestID=6e2f2b2d-231a-4727-84bf-79e7656dec04", "target": null } } @@ -1805,8 +1792,8 @@ ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1353628040", + "RandomSeed": "482677328", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + "SUBSCRIPTION_ID": "3919658b-68ae-4509-8c17-6a2238340ae7" } } diff --git a/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/PatchSchedulesFunctionalTests/CreateUpdateDeleteTestAsync.json b/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/PatchSchedulesFunctionalTests/CreateUpdateDeleteTestAsync.json index b8407f40a9c9..0c734ab0359e 100644 --- a/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/PatchSchedulesFunctionalTests/CreateUpdateDeleteTestAsync.json +++ b/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/PatchSchedulesFunctionalTests/CreateUpdateDeleteTestAsync.json @@ -1,52 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b6d1142ca4f9744ea3cda973a4f0b224-a198190984e08941-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4de80c4e9faef36a35661122879576d0", + "traceparent": "00-d542b0a03ea88b2435e79423677dffa0-2dbcaac6378ea61d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b500c8851205c3972d98ffca01483834", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "747", + "Content-Length": "405", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 06:47:36 GMT", + "Date": "Wed, 26 Oct 2022 07:32:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c1ef9ac2-7ac3-4441-a1dc-17a6792f3738", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "c1ef9ac2-7ac3-4441-a1dc-17a6792f3738", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T064736Z:c1ef9ac2-7ac3-4441-a1dc-17a6792f3738" + "x-ms-correlation-request-id": "ac9ee71b-8edf-4d2d-b8b4-77beda35666a", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "ac9ee71b-8edf-4d2d-b8b4-77beda35666a", + "x-ms-routing-request-id": "WESTUS2:20221026T073300Z:ac9ee71b-8edf-4d2d-b8b4-77beda35666a" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7", "authorizationSource": "RoleBased", "managedByTenants": [], - "tags": { - "TagKey-9823": "TagValue-566", - "TagKey-3481": "TagValue-320", - "TagKey-4926": "TagValue-1187", - "TagKey-751": "TagValue-3921", - "TagKey-1866": "TagValue-8559", - "TagKey-3094": "TagValue-9190", - "TagKey-2449": "TagValue-9", - "TagKey-8379": "TagValue-164", - "TagKey-7470": "TagValue-2205", - "TagKey-4236": "TagValue-3698", - "TagKey-5316": "TagValue-2725" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "subscriptionId": "3919658b-68ae-4509-8c17-6a2238340ae7", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "displayName": "CacheTeam - Austin Tolani", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -56,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRG-3620?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/testRG-3356?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "43", "Content-Type": "application/json", - "traceparent": "00-9cc2b4a9741e224a89e7f60f79ab47f0-977be39d1bb48a46-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f57961995c4ff806c6fecb49673fa968", + "traceparent": "00-ef71b543d5946c93ed91bd96bb77232b-be559c717c6c80cf-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c8f8d3f26150547bd491df4a52e05891", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -79,19 +66,19 @@ "Cache-Control": "no-cache", "Content-Length": "241", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 06:47:39 GMT", + "Date": "Wed, 26 Oct 2022 07:33:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "984784b7-526d-4f95-a948-7bdefb0b98d2", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "984784b7-526d-4f95-a948-7bdefb0b98d2", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T064739Z:984784b7-526d-4f95-a948-7bdefb0b98d2" + "x-ms-correlation-request-id": "46c4b483-0eaa-481b-9b3f-b9063ad10078", + "x-ms-ratelimit-remaining-subscription-writes": "1190", + "x-ms-request-id": "46c4b483-0eaa-481b-9b3f-b9063ad10078", + "x-ms-routing-request-id": "WESTUS2:20221026T073301Z:46c4b483-0eaa-481b-9b3f-b9063ad10078" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3620", - "name": "testRG-3620", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-3356", + "name": "testRG-3356", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "tags": { @@ -103,16 +90,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3620/providers/Microsoft.Cache/redis/RedisSchedules5470?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-3356/providers/Microsoft.Cache/redis/RedisSchedules4085?api-version=2022-06-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "87", "Content-Type": "application/json", - "traceparent": "00-793f4a361bf3a34f9a0ac9ecee4e0a8a-436bc8f4de82e247-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "89a0009020c1694ccc8106dda3949b50", + "traceparent": "00-c6c35cb865b158f30d35858f8c95604f-394727d02d4d2dc7-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b29dbf4b04096145d7b28bac92304650", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -127,33 +114,33 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "89a0009020c1694ccc8106dda3949b50", - "Content-Length": "829", + "client-request-id": "b29dbf4b04096145d7b28bac92304650", + "Content-Length": "826", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 06:47:46 GMT", + "Date": "Wed, 26 Oct 2022 07:33:03 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3620/providers/Microsoft.Cache/redis/RedisSchedules5470?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-3356/providers/Microsoft.Cache/redis/RedisSchedules4085?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "55d21672-42d4-435f-ba5d-a1a36d7e212e", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "73e7bb3f-14ff-408f-b214-2e9676bcc41e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T064746Z:55d21672-42d4-435f-ba5d-a1a36d7e212e", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "6c22d15e-e2bb-47cf-90c9-2043e5004089", + "x-ms-ratelimit-remaining-subscription-writes": "1189", + "x-ms-request-id": "647aa272-c97f-4344-bbbc-70f6be2fa448", + "x-ms-routing-request-id": "WESTUS2:20221026T073303Z:6c22d15e-e2bb-47cf-90c9-2043e5004089", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3620/providers/Microsoft.Cache/Redis/RedisSchedules5470", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-3356/providers/Microsoft.Cache/Redis/RedisSchedules4085", "location": "East US", - "name": "RedisSchedules5470", + "name": "RedisSchedules4085", "type": "Microsoft.Cache/Redis", "tags": {}, "properties": { "provisioningState": "Creating", - "redisVersion": "4.0.14", + "redisVersion": "6.0", "sku": { "name": "Premium", "family": "P", @@ -183,7 +170,7 @@ "primaryKey": "Sanitized", "secondaryKey": "Sanitized" }, - "hostName": "RedisSchedules5470.redis.cache.windows.net", + "hostName": "RedisSchedules4085.redis.cache.windows.net", "port": 6379, "sslPort": 6380, "linkedServers": [] @@ -191,38 +178,79 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-c6c35cb865b158f30d35858f8c95604f-e77354bdf023f5e0-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "79fc3d395a96cee8b26679afefa84260", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "79fc3d395a96cee8b26679afefa84260", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 07:33:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "76775dd8-a729-4d1f-b12a-8067ba7d0425", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "06e6a90a-5be7-41e9-bcec-f71b343c3cd1", + "x-ms-routing-request-id": "WESTUS2:20221026T073303Z:76775dd8-a729-4d1f-b12a-8067ba7d0425", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448", + "name": "647aa272-c97f-4344-bbbc-70f6be2fa448", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-793f4a361bf3a34f9a0ac9ecee4e0a8a-f7c398f236df484c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "75047dbada3041d72d8b83daff1a2369", + "traceparent": "00-c6c35cb865b158f30d35858f8c95604f-e75fc7b4c271c650-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a6fafa98adc81669581852d8838de8fc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "75047dbada3041d72d8b83daff1a2369", + "client-request-id": "a6fafa98adc81669581852d8838de8fc", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:47:46 GMT", + "Date": "Wed, 26 Oct 2022 07:33:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aabcd45c-2215-4736-89a3-9a541ce0ae38", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "7996c6bc-3fcc-405c-b246-78ae90639119", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T064746Z:aabcd45c-2215-4736-89a3-9a541ce0ae38", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "3c7cf19d-68f0-4cc6-91b4-2fddac6d1d99", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "57575d03-7cea-4c99-8d01-8efed419069e", + "x-ms-routing-request-id": "WESTUS2:20221026T073304Z:3c7cf19d-68f0-4cc6-91b4-2fddac6d1d99", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e", - "name": "73e7bb3f-14ff-408f-b214-2e9676bcc41e", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448", + "name": "647aa272-c97f-4344-bbbc-70f6be2fa448", "status": "InProgress", "startTime": null, "endTime": null, @@ -232,38 +260,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-793f4a361bf3a34f9a0ac9ecee4e0a8a-57d8e1499bfe464e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3cacf92f7c18916f50bd34d97fadbffe", + "traceparent": "00-c6c35cb865b158f30d35858f8c95604f-efaa5d0aa05ee98a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5472e5f9cd34fdb950c130f3bbb795b8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "3cacf92f7c18916f50bd34d97fadbffe", + "client-request-id": "5472e5f9cd34fdb950c130f3bbb795b8", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:47:47 GMT", + "Date": "Wed, 26 Oct 2022 07:33:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0ab1f86b-0e76-4ff4-b8e8-5824dcbb730d", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "13c9dbfe-8c98-488d-bf2a-866e754f3a08", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T064748Z:0ab1f86b-0e76-4ff4-b8e8-5824dcbb730d", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "e0ac9ee1-71ac-4883-842f-7fa782b362f4", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "e4e0c445-8fbf-4d96-ab26-e709d8691179", + "x-ms-routing-request-id": "WESTUS2:20221026T073306Z:e0ac9ee1-71ac-4883-842f-7fa782b362f4", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e", - "name": "73e7bb3f-14ff-408f-b214-2e9676bcc41e", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448", + "name": "647aa272-c97f-4344-bbbc-70f6be2fa448", "status": "InProgress", "startTime": null, "endTime": null, @@ -273,38 +301,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-793f4a361bf3a34f9a0ac9ecee4e0a8a-2084e1d9c2e4e247-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "26229e5b2690e01f2a4fbe0f7bd6e33a", + "traceparent": "00-c6c35cb865b158f30d35858f8c95604f-ac543116c874ca0d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7e1f20ee12e08bded4e5207d07104a24", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "26229e5b2690e01f2a4fbe0f7bd6e33a", + "client-request-id": "7e1f20ee12e08bded4e5207d07104a24", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:47:49 GMT", + "Date": "Wed, 26 Oct 2022 07:33:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a1c67274-68bb-4ef4-a89c-d5fd61b18b6d", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "57b225be-6153-4a30-a1dd-2d4028abbe32", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T064749Z:a1c67274-68bb-4ef4-a89c-d5fd61b18b6d", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "eb2d20b3-91b1-4130-910e-277fd57520c6", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "fdeb01a7-536c-4c99-822f-b1860cfc4dfb", + "x-ms-routing-request-id": "WESTUS2:20221026T073307Z:eb2d20b3-91b1-4130-910e-277fd57520c6", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e", - "name": "73e7bb3f-14ff-408f-b214-2e9676bcc41e", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448", + "name": "647aa272-c97f-4344-bbbc-70f6be2fa448", "status": "InProgress", "startTime": null, "endTime": null, @@ -314,38 +342,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-793f4a361bf3a34f9a0ac9ecee4e0a8a-a89730972fdaa143-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b16f37c4e9213d4f0d722472a6fec17f", + "traceparent": "00-c6c35cb865b158f30d35858f8c95604f-b609fade2732c266-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0ab57c7ded35ca2c41fd55077d765aa0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "b16f37c4e9213d4f0d722472a6fec17f", + "client-request-id": "0ab57c7ded35ca2c41fd55077d765aa0", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:47:50 GMT", + "Date": "Wed, 26 Oct 2022 07:33:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7c353ea4-5ca4-4232-8477-35c61e59aebc", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "c27267de-ec03-4f5d-92a4-3f8d6427c1e8", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T064750Z:7c353ea4-5ca4-4232-8477-35c61e59aebc", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "197ee255-a28e-4942-8ff7-fd3da6266c72", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "47b385c0-c7f7-44ce-ba07-a87919af9d65", + "x-ms-routing-request-id": "WESTUS2:20221026T073309Z:197ee255-a28e-4942-8ff7-fd3da6266c72", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e", - "name": "73e7bb3f-14ff-408f-b214-2e9676bcc41e", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448", + "name": "647aa272-c97f-4344-bbbc-70f6be2fa448", "status": "InProgress", "startTime": null, "endTime": null, @@ -355,38 +383,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-793f4a361bf3a34f9a0ac9ecee4e0a8a-724c731135a02349-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "607e85ccfdf709d8d9cc11c9be60167a", + "traceparent": "00-c6c35cb865b158f30d35858f8c95604f-7d9cf160ee0e2e15-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "63e99a83696de71c06e7804ead3bf540", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "607e85ccfdf709d8d9cc11c9be60167a", + "client-request-id": "63e99a83696de71c06e7804ead3bf540", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:47:52 GMT", + "Date": "Wed, 26 Oct 2022 07:33:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c46706b2-82d5-4324-ba29-768dc5122c61", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "f9b4112f-48d4-4a27-8697-b039ae85c614", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T064753Z:c46706b2-82d5-4324-ba29-768dc5122c61", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "a0501bef-ff6d-4ab2-b4ea-2876a8736e14", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "fc752865-cfd5-4c01-9a60-5b824477a2df", + "x-ms-routing-request-id": "WESTUS2:20221026T073313Z:a0501bef-ff6d-4ab2-b4ea-2876a8736e14", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e", - "name": "73e7bb3f-14ff-408f-b214-2e9676bcc41e", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448", + "name": "647aa272-c97f-4344-bbbc-70f6be2fa448", "status": "InProgress", "startTime": null, "endTime": null, @@ -396,38 +424,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-793f4a361bf3a34f9a0ac9ecee4e0a8a-58242c5444823d4f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4815f9da0d3e71dc4fe5181e01ad3a2c", + "traceparent": "00-c6c35cb865b158f30d35858f8c95604f-87b2669e7b30f8cf-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3e750b768a020182f3553de3bcd70e5e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "4815f9da0d3e71dc4fe5181e01ad3a2c", + "client-request-id": "3e750b768a020182f3553de3bcd70e5e", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:47:57 GMT", + "Date": "Wed, 26 Oct 2022 07:33:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1a6477ee-868c-45bf-ba02-35878b41bd25", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "6d095e12-a055-4fee-b155-889c7d99c51d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T064757Z:1a6477ee-868c-45bf-ba02-35878b41bd25", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "618d571a-b891-4d86-a695-55fbe0f0e7ee", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "f6af9ef2-6df4-46ff-8c10-c0f3b6771d19", + "x-ms-routing-request-id": "WESTUS2:20221026T073321Z:618d571a-b891-4d86-a695-55fbe0f0e7ee", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e", - "name": "73e7bb3f-14ff-408f-b214-2e9676bcc41e", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448", + "name": "647aa272-c97f-4344-bbbc-70f6be2fa448", "status": "InProgress", "startTime": null, "endTime": null, @@ -437,38 +465,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-793f4a361bf3a34f9a0ac9ecee4e0a8a-b8f8d3cd2e2d2c43-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f5433e8e8257c7425e65d855d8867fad", + "traceparent": "00-c6c35cb865b158f30d35858f8c95604f-bba1ba55dd4e9ad1-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6dfa7f8ae72613b760cd044e6ddd1c05", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "f5433e8e8257c7425e65d855d8867fad", + "client-request-id": "6dfa7f8ae72613b760cd044e6ddd1c05", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:48:05 GMT", + "Date": "Wed, 26 Oct 2022 07:33:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fe38c004-a8de-4aff-86d1-95f1c274767d", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "9bdf3a05-8c09-4fb8-b05e-52d5cc32ed7c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T064805Z:fe38c004-a8de-4aff-86d1-95f1c274767d", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "ef3017c8-5149-43e2-b471-c8d47074148c", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "c21a65bb-3b4c-41ec-b713-73f7491c38b5", + "x-ms-routing-request-id": "WESTUS2:20221026T073337Z:ef3017c8-5149-43e2-b471-c8d47074148c", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e", - "name": "73e7bb3f-14ff-408f-b214-2e9676bcc41e", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448", + "name": "647aa272-c97f-4344-bbbc-70f6be2fa448", "status": "InProgress", "startTime": null, "endTime": null, @@ -478,38 +506,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-793f4a361bf3a34f9a0ac9ecee4e0a8a-f40965fc10d69b4a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ac97aa5b78e9be41a80d1112e4ba072b", + "traceparent": "00-c6c35cb865b158f30d35858f8c95604f-23f75b9663c2fb4c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "719015071b00f99e17e86f172c382b2f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "ac97aa5b78e9be41a80d1112e4ba072b", + "client-request-id": "719015071b00f99e17e86f172c382b2f", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:48:21 GMT", + "Date": "Wed, 26 Oct 2022 07:34:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "55d371f7-2e19-4425-be25-35da5ebef1f9", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "c21e59b4-6284-44d1-9e0f-1cf8c0958f1d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T064822Z:55d371f7-2e19-4425-be25-35da5ebef1f9", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "b7254817-36c4-42eb-b514-8b1c53262c69", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "e6748a61-b758-48f1-8a71-99cf54428f79", + "x-ms-routing-request-id": "WESTUS2:20221026T073409Z:b7254817-36c4-42eb-b514-8b1c53262c69", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e", - "name": "73e7bb3f-14ff-408f-b214-2e9676bcc41e", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448", + "name": "647aa272-c97f-4344-bbbc-70f6be2fa448", "status": "InProgress", "startTime": null, "endTime": null, @@ -519,38 +547,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-793f4a361bf3a34f9a0ac9ecee4e0a8a-ecc7a62c7aac8749-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "803ae591201d5723b64dead8358799c8", + "traceparent": "00-c6c35cb865b158f30d35858f8c95604f-ef658d306542eb01-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2dc321d887418f195461dd3586349316", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "803ae591201d5723b64dead8358799c8", + "client-request-id": "2dc321d887418f195461dd3586349316", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:48:53 GMT", + "Date": "Wed, 26 Oct 2022 07:34:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0b217b8d-5d3a-430a-8e35-216e8933dda2", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "9060b90e-b9a8-4564-b107-56601e7b6684", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T064854Z:0b217b8d-5d3a-430a-8e35-216e8933dda2", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "9835bf65-563c-4f40-a218-823424c84f85", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "101bfdd1-3068-4590-ba84-0cc2e1672916", + "x-ms-routing-request-id": "WESTUS2:20221026T073441Z:9835bf65-563c-4f40-a218-823424c84f85", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e", - "name": "73e7bb3f-14ff-408f-b214-2e9676bcc41e", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448", + "name": "647aa272-c97f-4344-bbbc-70f6be2fa448", "status": "InProgress", "startTime": null, "endTime": null, @@ -560,38 +588,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-793f4a361bf3a34f9a0ac9ecee4e0a8a-8635b4da935a844e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "57c26b658d161543fc844d497130e2a4", + "traceparent": "00-c6c35cb865b158f30d35858f8c95604f-bd69903fb83d48bf-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a7db38389d466f5ee001563e779fe727", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "57c26b658d161543fc844d497130e2a4", + "client-request-id": "a7db38389d466f5ee001563e779fe727", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:49:26 GMT", + "Date": "Wed, 26 Oct 2022 07:35:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "450a6ddf-63b9-4f2f-bd0a-902f1241e009", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "171d94d1-a567-4a53-83a2-cd956b577329", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T064926Z:450a6ddf-63b9-4f2f-bd0a-902f1241e009", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "496ba1a1-c227-408f-a904-59105f530937", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "c38d5d01-2565-46bf-9e2b-94e4180e9241", + "x-ms-routing-request-id": "WESTUS2:20221026T073513Z:496ba1a1-c227-408f-a904-59105f530937", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e", - "name": "73e7bb3f-14ff-408f-b214-2e9676bcc41e", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448", + "name": "647aa272-c97f-4344-bbbc-70f6be2fa448", "status": "InProgress", "startTime": null, "endTime": null, @@ -601,38 +629,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-793f4a361bf3a34f9a0ac9ecee4e0a8a-2c6f9ecff917ad40-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f2c3ad5dff4b3b90863ff59b8d688921", + "traceparent": "00-c6c35cb865b158f30d35858f8c95604f-12e3c2b1da7db4a8-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4b76d4a1ef1a80c4fb011c9e3d6972e2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "f2c3ad5dff4b3b90863ff59b8d688921", + "client-request-id": "4b76d4a1ef1a80c4fb011c9e3d6972e2", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:49:58 GMT", + "Date": "Wed, 26 Oct 2022 07:35:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e00a937f-7cad-438e-b32f-45f9fd160dde", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "982dacd3-a902-42dd-ae8a-9adb98d30bd8", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T064959Z:e00a937f-7cad-438e-b32f-45f9fd160dde", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "18921aec-3a9e-4990-9edb-83ff42f6849d", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "5ae89d42-e7a1-4215-a9d6-b80b35bdae03", + "x-ms-routing-request-id": "WESTUS2:20221026T073546Z:18921aec-3a9e-4990-9edb-83ff42f6849d", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e", - "name": "73e7bb3f-14ff-408f-b214-2e9676bcc41e", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448", + "name": "647aa272-c97f-4344-bbbc-70f6be2fa448", "status": "InProgress", "startTime": null, "endTime": null, @@ -642,38 +670,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-793f4a361bf3a34f9a0ac9ecee4e0a8a-8ef44952153a2b40-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "78ac4874b0f70314a2258398d3d9e586", + "traceparent": "00-c6c35cb865b158f30d35858f8c95604f-d246918310bd7bff-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f4df5955835d3ae8c3544c4030db17b4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "78ac4874b0f70314a2258398d3d9e586", + "client-request-id": "f4df5955835d3ae8c3544c4030db17b4", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:50:30 GMT", + "Date": "Wed, 26 Oct 2022 07:36:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f4eb625c-ed82-4ce3-a24c-e80ae7a17fba", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "eaf6d427-4980-4cba-b9a2-326cdcdee086", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T065031Z:f4eb625c-ed82-4ce3-a24c-e80ae7a17fba", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "ea7dcdea-e8be-429a-8a41-47cfa4326ae7", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "8ecfe985-f769-4e18-8b5e-9d4a3903e012", + "x-ms-routing-request-id": "WESTUS2:20221026T073618Z:ea7dcdea-e8be-429a-8a41-47cfa4326ae7", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e", - "name": "73e7bb3f-14ff-408f-b214-2e9676bcc41e", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448", + "name": "647aa272-c97f-4344-bbbc-70f6be2fa448", "status": "InProgress", "startTime": null, "endTime": null, @@ -683,38 +711,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-793f4a361bf3a34f9a0ac9ecee4e0a8a-7e8bb26d1edb1d44-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "887b466ba6c3667ddb87d1d698a88793", + "traceparent": "00-c6c35cb865b158f30d35858f8c95604f-eb957faff71c40ea-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b193b57a48be49fb735bab4580bf3177", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "887b466ba6c3667ddb87d1d698a88793", + "client-request-id": "b193b57a48be49fb735bab4580bf3177", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:51:03 GMT", + "Date": "Wed, 26 Oct 2022 07:36:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9918c0b3-8ecb-4cf4-bcb7-332faf723648", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "e7eea46b-47b1-4800-9874-9b0c64e97053", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T065104Z:9918c0b3-8ecb-4cf4-bcb7-332faf723648", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "425099c4-48bd-47fb-a1b8-90b9df85ccd1", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "be6edd8d-bc30-44fa-ac12-272ae773e486", + "x-ms-routing-request-id": "WESTUS2:20221026T073650Z:425099c4-48bd-47fb-a1b8-90b9df85ccd1", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e", - "name": "73e7bb3f-14ff-408f-b214-2e9676bcc41e", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448", + "name": "647aa272-c97f-4344-bbbc-70f6be2fa448", "status": "InProgress", "startTime": null, "endTime": null, @@ -724,38 +752,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-793f4a361bf3a34f9a0ac9ecee4e0a8a-ccdba2189d1a2846-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "29d52bfb6983adac98bf50267cf767ac", + "traceparent": "00-c6c35cb865b158f30d35858f8c95604f-d47fe236c19db509-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1ee9738ef3c01ecaec3b87c5a2844f20", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "29d52bfb6983adac98bf50267cf767ac", + "client-request-id": "1ee9738ef3c01ecaec3b87c5a2844f20", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:51:35 GMT", + "Date": "Wed, 26 Oct 2022 07:37:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "60359bd0-f434-452d-b522-1bd51fd6d61f", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "b3121465-6fe2-4c98-bf78-978b361d5fc1", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T065136Z:60359bd0-f434-452d-b522-1bd51fd6d61f", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "1e230fbb-c541-4221-a1f4-057fca5d6931", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "23309d17-71df-4dbd-9d0d-ba190a34ae86", + "x-ms-routing-request-id": "WESTUS2:20221026T073722Z:1e230fbb-c541-4221-a1f4-057fca5d6931", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e", - "name": "73e7bb3f-14ff-408f-b214-2e9676bcc41e", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448", + "name": "647aa272-c97f-4344-bbbc-70f6be2fa448", "status": "InProgress", "startTime": null, "endTime": null, @@ -765,38 +793,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-793f4a361bf3a34f9a0ac9ecee4e0a8a-c724c0068024a44c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "472f6e5900edcd5ecb469d6fdf3e6bf9", + "traceparent": "00-c6c35cb865b158f30d35858f8c95604f-d7c8905ae842d7bc-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "882467eac1d60d245d958002d7a2ba03", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "472f6e5900edcd5ecb469d6fdf3e6bf9", + "client-request-id": "882467eac1d60d245d958002d7a2ba03", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:52:08 GMT", + "Date": "Wed, 26 Oct 2022 07:37:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "50096a13-4be6-455a-8c88-094b60423068", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "81954c62-9c16-4596-a841-42e87e41c3a4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T065208Z:50096a13-4be6-455a-8c88-094b60423068", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "44e6d4af-4b43-42a7-94b9-6ab0e7675ac7", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "c5c3d17d-8365-467e-bba5-3b5b1459051c", + "x-ms-routing-request-id": "WESTUS2:20221026T073754Z:44e6d4af-4b43-42a7-94b9-6ab0e7675ac7", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e", - "name": "73e7bb3f-14ff-408f-b214-2e9676bcc41e", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448", + "name": "647aa272-c97f-4344-bbbc-70f6be2fa448", "status": "InProgress", "startTime": null, "endTime": null, @@ -806,38 +834,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-793f4a361bf3a34f9a0ac9ecee4e0a8a-256f5852a21f7a47-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a89def9dbc03010399cdf0035556eae4", + "traceparent": "00-c6c35cb865b158f30d35858f8c95604f-d64b1c9fe3384c90-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "bdb1d523f8f286f4eb74c482c035a7ef", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "a89def9dbc03010399cdf0035556eae4", + "client-request-id": "bdb1d523f8f286f4eb74c482c035a7ef", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:52:40 GMT", + "Date": "Wed, 26 Oct 2022 07:38:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3872b397-2976-4261-be48-30e238028304", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "746bd68d-1776-4492-b026-6cde79a209c8", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T065241Z:3872b397-2976-4261-be48-30e238028304", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "f5be76f6-b524-4ae9-b865-c73af3394ba2", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "119370dd-8413-4052-8d6c-cc9cbcf405b1", + "x-ms-routing-request-id": "WESTUS2:20221026T073826Z:f5be76f6-b524-4ae9-b865-c73af3394ba2", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e", - "name": "73e7bb3f-14ff-408f-b214-2e9676bcc41e", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448", + "name": "647aa272-c97f-4344-bbbc-70f6be2fa448", "status": "InProgress", "startTime": null, "endTime": null, @@ -847,38 +875,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-793f4a361bf3a34f9a0ac9ecee4e0a8a-7ed09d7d3e9a3d40-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "297c241f4078faa6cc085d3ccc3cce59", + "traceparent": "00-c6c35cb865b158f30d35858f8c95604f-cad5e5da01513fd2-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "185b8b0ba99bcda14fdcc02a73c74649", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "297c241f4078faa6cc085d3ccc3cce59", + "client-request-id": "185b8b0ba99bcda14fdcc02a73c74649", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:53:13 GMT", + "Date": "Wed, 26 Oct 2022 07:38:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cf1c731e-8006-4c5f-8aba-36bfa5a1766e", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "6d8cf53f-bde7-4a47-b953-cc100274e2e3", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T065313Z:cf1c731e-8006-4c5f-8aba-36bfa5a1766e", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "3db2ab0c-b884-4e1d-8ddf-93b5357b7919", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "35787092-4589-431d-ba26-b6f703539004", + "x-ms-routing-request-id": "WESTUS2:20221026T073859Z:3db2ab0c-b884-4e1d-8ddf-93b5357b7919", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e", - "name": "73e7bb3f-14ff-408f-b214-2e9676bcc41e", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448", + "name": "647aa272-c97f-4344-bbbc-70f6be2fa448", "status": "InProgress", "startTime": null, "endTime": null, @@ -888,38 +916,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-793f4a361bf3a34f9a0ac9ecee4e0a8a-fc7c5def31a47c48-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "8c885654bf5a9da96b2ead20105a7774", + "traceparent": "00-c6c35cb865b158f30d35858f8c95604f-4464074a98e42f61-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "cca2838192d2f12e739d9c61fca14c27", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "8c885654bf5a9da96b2ead20105a7774", + "client-request-id": "cca2838192d2f12e739d9c61fca14c27", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:53:45 GMT", + "Date": "Wed, 26 Oct 2022 07:39:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "02164e06-ac32-4d84-aa9e-abe571751a6f", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "69122fae-ec19-40d2-8926-6bdec15c8bca", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T065345Z:02164e06-ac32-4d84-aa9e-abe571751a6f", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "25f69c5b-456b-41b4-bf77-826facdc26b2", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "a9732622-7974-42c6-9dd2-6e81086d04a2", + "x-ms-routing-request-id": "WESTUS2:20221026T073931Z:25f69c5b-456b-41b4-bf77-826facdc26b2", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e", - "name": "73e7bb3f-14ff-408f-b214-2e9676bcc41e", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448", + "name": "647aa272-c97f-4344-bbbc-70f6be2fa448", "status": "InProgress", "startTime": null, "endTime": null, @@ -929,38 +957,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-793f4a361bf3a34f9a0ac9ecee4e0a8a-a98683937e033044-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "bb50b85c41c15d8148a2dbfb5fc6345d", + "traceparent": "00-c6c35cb865b158f30d35858f8c95604f-468d681d931902be-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4cf790eea1477a6834e46d1538ca1224", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "bb50b85c41c15d8148a2dbfb5fc6345d", + "client-request-id": "4cf790eea1477a6834e46d1538ca1224", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:54:18 GMT", + "Date": "Wed, 26 Oct 2022 07:40:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "27c1a1b0-adfa-43f1-8b90-44d1c89e243c", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "7207c043-897e-4dab-b219-e59e9f007d72", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T065418Z:27c1a1b0-adfa-43f1-8b90-44d1c89e243c", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "1314d69f-44e0-4cd9-b584-4206be1a72f6", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "ad7cfb31-ebea-4896-825a-c585ac967858", + "x-ms-routing-request-id": "WESTUS2:20221026T074003Z:1314d69f-44e0-4cd9-b584-4206be1a72f6", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e", - "name": "73e7bb3f-14ff-408f-b214-2e9676bcc41e", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448", + "name": "647aa272-c97f-4344-bbbc-70f6be2fa448", "status": "InProgress", "startTime": null, "endTime": null, @@ -970,38 +998,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-793f4a361bf3a34f9a0ac9ecee4e0a8a-b800672425fb9b4a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "feaf96ff5dcd608a7adfbe499386ea72", + "traceparent": "00-c6c35cb865b158f30d35858f8c95604f-9313fa72a05f1cc6-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3c017b2eda93791d5c6aa5fd0c3fd1ad", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "feaf96ff5dcd608a7adfbe499386ea72", + "client-request-id": "3c017b2eda93791d5c6aa5fd0c3fd1ad", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:54:51 GMT", + "Date": "Wed, 26 Oct 2022 07:40:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d8b91293-9e13-484b-82ee-f03bb60a388c", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "51099c42-4294-4dba-8e73-cfaa137349b6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T065451Z:d8b91293-9e13-484b-82ee-f03bb60a388c", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "164eae6f-dfc3-47c8-b79b-78dc5e070233", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "f8289b84-76f3-4667-9b48-e626fce0e566", + "x-ms-routing-request-id": "WESTUS2:20221026T074035Z:164eae6f-dfc3-47c8-b79b-78dc5e070233", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e", - "name": "73e7bb3f-14ff-408f-b214-2e9676bcc41e", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448", + "name": "647aa272-c97f-4344-bbbc-70f6be2fa448", "status": "InProgress", "startTime": null, "endTime": null, @@ -1011,38 +1039,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-793f4a361bf3a34f9a0ac9ecee4e0a8a-98be560c83d81549-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "13e0e89013ec1297d42b43b7e3ad3da4", + "traceparent": "00-c6c35cb865b158f30d35858f8c95604f-a9adca11c6d92462-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e23c988ff9d0df021b2898ed2418b8a8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "13e0e89013ec1297d42b43b7e3ad3da4", + "client-request-id": "e23c988ff9d0df021b2898ed2418b8a8", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:55:23 GMT", + "Date": "Wed, 26 Oct 2022 07:41:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b73325b8-5d37-4020-98e6-f5739735db39", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "4babfc72-5f7f-4cdb-b7ea-0df8fa925431", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T065523Z:b73325b8-5d37-4020-98e6-f5739735db39", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "17f31100-5d76-4252-bc86-3886975e4908", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "e4c7b7be-71de-498a-ab02-3469f268fa3d", + "x-ms-routing-request-id": "WESTUS2:20221026T074107Z:17f31100-5d76-4252-bc86-3886975e4908", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e", - "name": "73e7bb3f-14ff-408f-b214-2e9676bcc41e", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448", + "name": "647aa272-c97f-4344-bbbc-70f6be2fa448", "status": "InProgress", "startTime": null, "endTime": null, @@ -1052,38 +1080,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-793f4a361bf3a34f9a0ac9ecee4e0a8a-ce912e30e4c10a4c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "7a2050fa78aafea72eef40e28338c9c2", + "traceparent": "00-c6c35cb865b158f30d35858f8c95604f-196ec7d9fe124763-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "8032788a10a01394727defddfc6b6df4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "7a2050fa78aafea72eef40e28338c9c2", + "client-request-id": "8032788a10a01394727defddfc6b6df4", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:55:55 GMT", + "Date": "Wed, 26 Oct 2022 07:41:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5391b7f6-bd42-472d-ad5e-bec96a6c12c4", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "93e30855-daf3-47a6-8a0f-5febf57f6b0e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T065555Z:5391b7f6-bd42-472d-ad5e-bec96a6c12c4", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "dc2cf32f-8f31-4d2d-a12d-d3f986de4f22", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "458606c7-1bb4-465b-9bfd-23457e533ac4", + "x-ms-routing-request-id": "WESTUS2:20221026T074139Z:dc2cf32f-8f31-4d2d-a12d-d3f986de4f22", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e", - "name": "73e7bb3f-14ff-408f-b214-2e9676bcc41e", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448", + "name": "647aa272-c97f-4344-bbbc-70f6be2fa448", "status": "InProgress", "startTime": null, "endTime": null, @@ -1093,38 +1121,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-793f4a361bf3a34f9a0ac9ecee4e0a8a-f20de04f7f82954b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "766b69b720e5ec70fe9d2aa119d27ccd", + "traceparent": "00-c6c35cb865b158f30d35858f8c95604f-5542ff8322419cf4-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "9f86c0132f8e34537821206b422f5444", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "766b69b720e5ec70fe9d2aa119d27ccd", + "client-request-id": "9f86c0132f8e34537821206b422f5444", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:56:28 GMT", + "Date": "Wed, 26 Oct 2022 07:42:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ad4f760d-7631-4b86-986f-e8f971254cdf", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "6030fdef-07de-497a-9531-6816bf5816f5", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T065628Z:ad4f760d-7631-4b86-986f-e8f971254cdf", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "73b6e1cf-ca68-4a80-91fb-b53bb650eecc", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "c50a594d-636a-418a-8b38-634dfc0fdb5a", + "x-ms-routing-request-id": "WESTUS2:20221026T074211Z:73b6e1cf-ca68-4a80-91fb-b53bb650eecc", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e", - "name": "73e7bb3f-14ff-408f-b214-2e9676bcc41e", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448", + "name": "647aa272-c97f-4344-bbbc-70f6be2fa448", "status": "InProgress", "startTime": null, "endTime": null, @@ -1134,38 +1162,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-793f4a361bf3a34f9a0ac9ecee4e0a8a-6b6dbbab4596994d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "424f19a1706517c741e2e4fdd2b58e9c", + "traceparent": "00-c6c35cb865b158f30d35858f8c95604f-8dcac2147a615ac0-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "9472fcb1500d7e0c042870520a25e3b0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "424f19a1706517c741e2e4fdd2b58e9c", + "client-request-id": "9472fcb1500d7e0c042870520a25e3b0", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:57:00 GMT", + "Date": "Wed, 26 Oct 2022 07:42:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d6194ad4-abe8-4bd6-86f1-8afab54e9080", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "27844fff-36a4-4138-b629-ce82de7f883b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T065700Z:d6194ad4-abe8-4bd6-86f1-8afab54e9080", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "8bc9f1d3-6f11-4e81-9e30-9f00a3459dd7", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "1683f629-2eab-4ec3-bb2e-25d302dbe108", + "x-ms-routing-request-id": "WESTUS2:20221026T074244Z:8bc9f1d3-6f11-4e81-9e30-9f00a3459dd7", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e", - "name": "73e7bb3f-14ff-408f-b214-2e9676bcc41e", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448", + "name": "647aa272-c97f-4344-bbbc-70f6be2fa448", "status": "InProgress", "startTime": null, "endTime": null, @@ -1175,38 +1203,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-793f4a361bf3a34f9a0ac9ecee4e0a8a-3f583bfe2f3df844-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "7a008162c741d9bfdf347b0d4e05e55c", + "traceparent": "00-c6c35cb865b158f30d35858f8c95604f-ca7a029b61ddd947-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "63daa4ba19915a1a24fd087ef028d143", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "7a008162c741d9bfdf347b0d4e05e55c", + "client-request-id": "63daa4ba19915a1a24fd087ef028d143", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:57:32 GMT", + "Date": "Wed, 26 Oct 2022 07:43:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "17e13ba9-74bf-441c-a4fa-d93b8aebb499", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "c8b4d516-5b65-4c98-879e-91ee3aa8f71c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T065732Z:17e13ba9-74bf-441c-a4fa-d93b8aebb499", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "41d7bff1-7764-4988-a55a-a8e4bef2760c", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "5f4220f8-3284-431d-b9aa-cef667cef769", + "x-ms-routing-request-id": "WESTUS2:20221026T074316Z:41d7bff1-7764-4988-a55a-a8e4bef2760c", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e", - "name": "73e7bb3f-14ff-408f-b214-2e9676bcc41e", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448", + "name": "647aa272-c97f-4344-bbbc-70f6be2fa448", "status": "InProgress", "startTime": null, "endTime": null, @@ -1216,38 +1244,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-793f4a361bf3a34f9a0ac9ecee4e0a8a-375c79b35e17e241-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6a40727387e9475da15434033b731949", + "traceparent": "00-c6c35cb865b158f30d35858f8c95604f-15d7e084b8457b3d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ff2bab28d8f8c2e7b3089b65bf012a53", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "6a40727387e9475da15434033b731949", + "client-request-id": "ff2bab28d8f8c2e7b3089b65bf012a53", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:58:05 GMT", + "Date": "Wed, 26 Oct 2022 07:43:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "20800125-9a24-4ccf-99e3-a8edbbcd30dc", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "222710a9-da08-4622-9f3a-639e9be977e0", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T065805Z:20800125-9a24-4ccf-99e3-a8edbbcd30dc", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "da4d3af2-f8e1-43dd-a03d-f4660af25be1", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "ee9a9a7f-6b1d-4b9e-8f25-576f65a4f536", + "x-ms-routing-request-id": "WESTUS2:20221026T074348Z:da4d3af2-f8e1-43dd-a03d-f4660af25be1", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e", - "name": "73e7bb3f-14ff-408f-b214-2e9676bcc41e", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448", + "name": "647aa272-c97f-4344-bbbc-70f6be2fa448", "status": "InProgress", "startTime": null, "endTime": null, @@ -1257,38 +1285,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-793f4a361bf3a34f9a0ac9ecee4e0a8a-5ea4cf4a314e9740-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "983f8d0f01d2da8b5a766331f5bac83c", + "traceparent": "00-c6c35cb865b158f30d35858f8c95604f-3804d3a51ce72b8d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "9eb1703ef15598b2e117700f488e8edb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "983f8d0f01d2da8b5a766331f5bac83c", + "client-request-id": "9eb1703ef15598b2e117700f488e8edb", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:58:37 GMT", + "Date": "Wed, 26 Oct 2022 07:44:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e33af790-6bdc-45d5-8ddb-827d27e826e6", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "57a923b1-a0d4-4b30-888b-47b55ca87400", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T065837Z:e33af790-6bdc-45d5-8ddb-827d27e826e6", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "05e3b9ff-81dc-4354-91f5-0ccdf7040633", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "0f714d9d-8ec1-4949-b26a-d0465c0807d2", + "x-ms-routing-request-id": "WESTUS2:20221026T074420Z:05e3b9ff-81dc-4354-91f5-0ccdf7040633", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e", - "name": "73e7bb3f-14ff-408f-b214-2e9676bcc41e", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448", + "name": "647aa272-c97f-4344-bbbc-70f6be2fa448", "status": "InProgress", "startTime": null, "endTime": null, @@ -1298,38 +1326,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-793f4a361bf3a34f9a0ac9ecee4e0a8a-8f6e31de2cd8924e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5f8988fc2474dab324b8d8ed92bb9d6b", + "traceparent": "00-c6c35cb865b158f30d35858f8c95604f-a0835188f6aa48d3-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5e292d57e3f9e1b7bc18b0897eb59b23", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "5f8988fc2474dab324b8d8ed92bb9d6b", + "client-request-id": "5e292d57e3f9e1b7bc18b0897eb59b23", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:59:09 GMT", + "Date": "Wed, 26 Oct 2022 07:44:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b29a2706-0197-46ff-9ef6-e8d74d36a88d", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "38910654-2473-47e5-ba9d-e35712cbcbe7", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T065909Z:b29a2706-0197-46ff-9ef6-e8d74d36a88d", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "e6c6325a-9273-4e73-a2db-b7adeec782b1", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "30316495-3f9e-4e82-862d-46e319b241a5", + "x-ms-routing-request-id": "WESTUS2:20221026T074452Z:e6c6325a-9273-4e73-a2db-b7adeec782b1", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e", - "name": "73e7bb3f-14ff-408f-b214-2e9676bcc41e", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448", + "name": "647aa272-c97f-4344-bbbc-70f6be2fa448", "status": "InProgress", "startTime": null, "endTime": null, @@ -1339,38 +1367,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-793f4a361bf3a34f9a0ac9ecee4e0a8a-9a86d5f7ea26824c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c1fe311b4dc5718ae7660f72232c52e7", + "traceparent": "00-c6c35cb865b158f30d35858f8c95604f-413971dbb6a2719d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7f3fb4d3337737edf9931de068d77a25", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "c1fe311b4dc5718ae7660f72232c52e7", + "client-request-id": "7f3fb4d3337737edf9931de068d77a25", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:59:42 GMT", + "Date": "Wed, 26 Oct 2022 07:45:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bfa16cfc-8a34-44ee-aab8-8c4ac25eea24", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "bee354bb-f1fe-4489-8916-2f3410bf1d84", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T065942Z:bfa16cfc-8a34-44ee-aab8-8c4ac25eea24", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "da85c924-844a-4025-9706-b22877c70d8d", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "2ce26ad5-fddc-450f-911a-07041bbcea70", + "x-ms-routing-request-id": "WESTUS2:20221026T074524Z:da85c924-844a-4025-9706-b22877c70d8d", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e", - "name": "73e7bb3f-14ff-408f-b214-2e9676bcc41e", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448", + "name": "647aa272-c97f-4344-bbbc-70f6be2fa448", "status": "InProgress", "startTime": null, "endTime": null, @@ -1380,38 +1408,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-793f4a361bf3a34f9a0ac9ecee4e0a8a-a758896a3abd084e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b306f88bb9e9ead5da647319299d479e", + "traceparent": "00-c6c35cb865b158f30d35858f8c95604f-b4467eacbcf37c06-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "920ebf7acbd75a5ab8cfe13d4028192c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "b306f88bb9e9ead5da647319299d479e", + "client-request-id": "920ebf7acbd75a5ab8cfe13d4028192c", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 07:00:14 GMT", + "Date": "Wed, 26 Oct 2022 07:45:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "32106264-d929-4c23-bab5-99a10e298fb3", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "aa2b3b4a-5bf0-496b-a3ab-d8a78c71024b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T070014Z:32106264-d929-4c23-bab5-99a10e298fb3", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "1a96a697-49dc-423d-8d68-7b828e30d563", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "2ea8999b-7320-4736-9f09-113eb0c7aec9", + "x-ms-routing-request-id": "WESTUS2:20221026T074556Z:1a96a697-49dc-423d-8d68-7b828e30d563", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e", - "name": "73e7bb3f-14ff-408f-b214-2e9676bcc41e", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448", + "name": "647aa272-c97f-4344-bbbc-70f6be2fa448", "status": "InProgress", "startTime": null, "endTime": null, @@ -1421,38 +1449,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-793f4a361bf3a34f9a0ac9ecee4e0a8a-695fa0b334207948-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c315f7d907bcaf76fd18780d1440b7f8", + "traceparent": "00-c6c35cb865b158f30d35858f8c95604f-2a198d96cb135977-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "933c4d7c0e4e24633ff16565c6d778e5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "c315f7d907bcaf76fd18780d1440b7f8", + "client-request-id": "933c4d7c0e4e24633ff16565c6d778e5", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 07:00:46 GMT", + "Date": "Wed, 26 Oct 2022 07:46:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9a7bd1dd-8369-4b9b-bac5-afdd57abbabf", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "4be3ec65-a416-436c-b541-6bfedd4b3753", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T070046Z:9a7bd1dd-8369-4b9b-bac5-afdd57abbabf", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "60cff3e0-bb84-42e5-8f63-2a64e3caecaa", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "8e9b06e3-ec09-4062-88d4-573618dc539c", + "x-ms-routing-request-id": "WESTUS2:20221026T074628Z:60cff3e0-bb84-42e5-8f63-2a64e3caecaa", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e", - "name": "73e7bb3f-14ff-408f-b214-2e9676bcc41e", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448", + "name": "647aa272-c97f-4344-bbbc-70f6be2fa448", "status": "InProgress", "startTime": null, "endTime": null, @@ -1462,38 +1490,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-793f4a361bf3a34f9a0ac9ecee4e0a8a-04e4dea4761b1241-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9961f066e9b561825c13e661d9704849", + "traceparent": "00-c6c35cb865b158f30d35858f8c95604f-b20c0e76a0f7c84f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "be0f8b9d08a6074c5ae5c7a851b0f6d0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "9961f066e9b561825c13e661d9704849", + "client-request-id": "be0f8b9d08a6074c5ae5c7a851b0f6d0", "Content-Length": "352", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 07:01:20 GMT", + "Date": "Wed, 26 Oct 2022 07:47:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6d438f5a-3891-42fd-a31a-d6b164827fd7", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "c24cfd0a-eb45-448a-9712-82458cc5ce3f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T070120Z:6d438f5a-3891-42fd-a31a-d6b164827fd7", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "a67d6c7c-1736-45e6-855c-fcc763c87cad", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "ec51f61c-76d7-4213-a459-308c334836d0", + "x-ms-routing-request-id": "WESTUS2:20221026T074701Z:a67d6c7c-1736-45e6-855c-fcc763c87cad", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/73e7bb3f-14ff-408f-b214-2e9676bcc41e", - "name": "73e7bb3f-14ff-408f-b214-2e9676bcc41e", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/647aa272-c97f-4344-bbbc-70f6be2fa448", + "name": "647aa272-c97f-4344-bbbc-70f6be2fa448", "status": "Succeeded", "startTime": null, "endTime": null, @@ -1503,43 +1531,43 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3620/providers/Microsoft.Cache/redis/RedisSchedules5470?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-3356/providers/Microsoft.Cache/redis/RedisSchedules4085?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-793f4a361bf3a34f9a0ac9ecee4e0a8a-e8db3cc9ca91e04c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "2c99711f8f16842b8256b5d140c7d59a", + "traceparent": "00-c6c35cb865b158f30d35858f8c95604f-4f5591af74cc6532-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1b64f17ae69b6cd65bea53e566f494e1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "2c99711f8f16842b8256b5d140c7d59a", - "Content-Length": "779", + "client-request-id": "1b64f17ae69b6cd65bea53e566f494e1", + "Content-Length": "776", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 07:01:20 GMT", + "Date": "Wed, 26 Oct 2022 07:47:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2118a0bb-0356-41ba-b3b9-30937e7c9464", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-request-id": "060f5085-f710-4f02-a971-bd3641ad1dc6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T070120Z:2118a0bb-0356-41ba-b3b9-30937e7c9464", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "5c6e5e14-42de-40ff-9846-768909a8060f", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "b908ec49-be9f-494e-80a7-e7db2154e936", + "x-ms-routing-request-id": "WESTUS2:20221026T074701Z:5c6e5e14-42de-40ff-9846-768909a8060f", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3620/providers/Microsoft.Cache/Redis/RedisSchedules5470", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-3356/providers/Microsoft.Cache/Redis/RedisSchedules4085", "location": "East US", - "name": "RedisSchedules5470", + "name": "RedisSchedules4085", "type": "Microsoft.Cache/Redis", "tags": {}, "properties": { "provisioningState": "Succeeded", - "redisVersion": "4.0.14", + "redisVersion": "6.0", "sku": { "name": "Premium", "family": "P", @@ -1566,7 +1594,7 @@ "maxmemory-delta": "642" }, "accessKeys": null, - "hostName": "RedisSchedules5470.redis.cache.windows.net", + "hostName": "RedisSchedules4085.redis.cache.windows.net", "port": 6379, "sslPort": 6380, "linkedServers": [] @@ -1574,16 +1602,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3620/providers/Microsoft.Cache/redis/RedisSchedules5470/patchSchedules/default?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-3356/providers/Microsoft.Cache/redis/RedisSchedules4085/patchSchedules/default?api-version=2022-06-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "175", "Content-Type": "application/json", - "traceparent": "00-b7046184285cc842af50fac02bead1cc-017f1c3782adb84f-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "38b37badad3befe975b466a82114d68d", + "traceparent": "00-7d03f8d1c5678ee2085188e04689fdb2-94c60c130abc5b77-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b59ffc565b1974850034396946bbd28e", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -1605,25 +1633,25 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "38b37badad3befe975b466a82114d68d", + "client-request-id": "b59ffc565b1974850034396946bbd28e", "Content-Length": "438", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 07:01:21 GMT", + "Date": "Wed, 26 Oct 2022 07:47:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "be94667b-c83e-4735-a891-67315d3930d2", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "8fbab93b-5f4f-49d2-a83b-52874b667721", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T070121Z:be94667b-c83e-4735-a891-67315d3930d2", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "e34e1960-e4b7-46d3-a46d-c45930b198ae", + "x-ms-ratelimit-remaining-subscription-writes": "1190", + "x-ms-request-id": "f35b4526-8273-4df9-8ca8-35ee8f42e0b8", + "x-ms-routing-request-id": "WESTUS2:20221026T074701Z:e34e1960-e4b7-46d3-a46d-c45930b198ae", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3620/providers/Microsoft.Cache/Redis/RedisSchedules5470/patchSchedules/default", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-3356/providers/Microsoft.Cache/Redis/RedisSchedules4085/patchSchedules/default", "location": "East US", - "name": "RedisSchedules5470/default", + "name": "RedisSchedules4085/default", "type": "Microsoft.Cache/Redis/PatchSchedules", "properties": { "scheduleEntries": [ @@ -1642,39 +1670,39 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3620/providers/Microsoft.Cache/redis/RedisSchedules5470/patchSchedules/default?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-3356/providers/Microsoft.Cache/redis/RedisSchedules4085/patchSchedules/default?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-21968fb610ed7a4e82295c600e6d9d8e-bed69c8445138745-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a3ee2fd08ba6d6e1c5dd175e33b12195", + "traceparent": "00-7a6ebbacd0e256cba4e696575b2e4006-c3d3e5275d473b9a-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d5eb95fa5d73b649b4a363bcb466a165", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "a3ee2fd08ba6d6e1c5dd175e33b12195", + "client-request-id": "d5eb95fa5d73b649b4a363bcb466a165", "Content-Length": "438", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 07:01:22 GMT", + "Date": "Wed, 26 Oct 2022 07:47:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "edd53271-0cad-492a-a5d8-80c49231053d", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "17d810cb-852f-47e7-95fd-88697907a1e4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T070122Z:edd53271-0cad-492a-a5d8-80c49231053d", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "ad24089f-231d-487e-8374-a7346b580756", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "0500e17c-5f41-4335-b475-59a89d25fbfe", + "x-ms-routing-request-id": "WESTUS2:20221026T074702Z:ad24089f-231d-487e-8374-a7346b580756", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3620/providers/Microsoft.Cache/Redis/RedisSchedules5470/patchSchedules/default", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-3356/providers/Microsoft.Cache/Redis/RedisSchedules4085/patchSchedules/default", "location": "East US", - "name": "RedisSchedules5470/default", + "name": "RedisSchedules4085/default", "type": "Microsoft.Cache/Redis/PatchSchedules", "properties": { "scheduleEntries": [ @@ -1693,70 +1721,70 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3620/providers/Microsoft.Cache/redis/RedisSchedules5470/patchSchedules/default?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-3356/providers/Microsoft.Cache/redis/RedisSchedules4085/patchSchedules/default?api-version=2022-06-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-8243c4738bf0fd43867c935141727408-7c50a192b8fb514c-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5db34b3d0fbd710d87aab6622882636d", + "traceparent": "00-fff30acc89d828e138e53356dce57178-07475f3f33e540a3-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5551e65041111fb66bef1a67ad6c259f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "5db34b3d0fbd710d87aab6622882636d", + "client-request-id": "5551e65041111fb66bef1a67ad6c259f", "Content-Length": "0", - "Date": "Fri, 26 Aug 2022 07:01:23 GMT", + "Date": "Wed, 26 Oct 2022 07:47:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d1f1b1e9-1fa0-45ad-8aa1-298ef0053b8e", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-request-id": "dc8e46be-790a-4dcb-8570-cc1bad15d3a4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T070123Z:d1f1b1e9-1fa0-45ad-8aa1-298ef0053b8e", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "21ac8165-e4b8-4587-a838-2b014ddecf83", + "x-ms-ratelimit-remaining-subscription-deletes": "14997", + "x-ms-request-id": "4a9dd829-ceed-49e8-a2b9-20a7473269c0", + "x-ms-routing-request-id": "WESTUS2:20221026T074702Z:21ac8165-e4b8-4587-a838-2b014ddecf83", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-3620/providers/Microsoft.Cache/redis/RedisSchedules5470/patchSchedules/default?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-3356/providers/Microsoft.Cache/redis/RedisSchedules4085/patchSchedules/default?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-cc9a4964953c714cba79fe68741c7fb0-eade861811881b4a-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1100288031d922f499dc725e968abcc4", + "traceparent": "00-5dea131b044132d3eee6de0345e2454f-f33dd7f257d1cd30-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d0eac418bf09f96eb2e80076f7c9bf9a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "1100288031d922f499dc725e968abcc4", + "client-request-id": "d0eac418bf09f96eb2e80076f7c9bf9a", "Content-Length": "186", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 07:01:23 GMT", + "Date": "Wed, 26 Oct 2022 07:47:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "05d37cf4-a75a-467f-92ae-8f7a6b5f5a29", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-request-id": "f0af0a4b-136b-43da-a490-9b279f09e59e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T070123Z:05d37cf4-a75a-467f-92ae-8f7a6b5f5a29", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "0022d1a2-164e-462f-8222-1af203da0e7b", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "c07036ae-dde3-41d1-9582-81afebe67b2f", + "x-ms-routing-request-id": "WESTUS2:20221026T074702Z:0022d1a2-164e-462f-8222-1af203da0e7b", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "There are no patch schedules found for redis cache \u0027RedisSchedules5470\u0027.\r\nRequestID=f0af0a4b-136b-43da-a490-9b279f09e59e", + "message": "There are no patch schedules found for redis cache \u0027RedisSchedules4085\u0027.\r\nRequestID=c07036ae-dde3-41d1-9582-81afebe67b2f", "target": null } } @@ -1764,8 +1792,8 @@ ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "866695619", + "RandomSeed": "1771176150", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + "SUBSCRIPTION_ID": "3919658b-68ae-4509-8c17-6a2238340ae7" } } diff --git a/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/RebootFunctionalTests/CreateUpdateDeleteTest.json b/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/RebootFunctionalTests/CreateUpdateDeleteTest.json index 42ff6c553312..6496ef0668a5 100644 --- a/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/RebootFunctionalTests/CreateUpdateDeleteTest.json +++ b/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/RebootFunctionalTests/CreateUpdateDeleteTest.json @@ -1,52 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-2191eff05e10374690e185ed544438de-ff09583d33e98948-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "7c39fd00af7ceb7e14b51d13c1805f7c", + "traceparent": "00-3e0577426917421b354972a90af6bc33-79a6a2e9394a0eb5-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "8fe2476fa6b3274f6cc7c136a95ef42c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "747", + "Content-Length": "405", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 06:19:41 GMT", + "Date": "Wed, 26 Oct 2022 07:47:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f1dd0eaa-2752-4905-9411-53500e7c9a49", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "f1dd0eaa-2752-4905-9411-53500e7c9a49", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T061941Z:f1dd0eaa-2752-4905-9411-53500e7c9a49" + "x-ms-correlation-request-id": "428755b8-a0ba-427a-bc68-7340e70f42e7", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "428755b8-a0ba-427a-bc68-7340e70f42e7", + "x-ms-routing-request-id": "WESTUS2:20221026T074704Z:428755b8-a0ba-427a-bc68-7340e70f42e7" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7", "authorizationSource": "RoleBased", "managedByTenants": [], - "tags": { - "TagKey-9823": "TagValue-566", - "TagKey-3481": "TagValue-320", - "TagKey-4926": "TagValue-1187", - "TagKey-751": "TagValue-3921", - "TagKey-1866": "TagValue-8559", - "TagKey-3094": "TagValue-9190", - "TagKey-2449": "TagValue-9", - "TagKey-8379": "TagValue-164", - "TagKey-7470": "TagValue-2205", - "TagKey-4236": "TagValue-3698", - "TagKey-5316": "TagValue-2725" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "subscriptionId": "3919658b-68ae-4509-8c17-6a2238340ae7", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "displayName": "CacheTeam - Austin Tolani", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -56,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRG-2470?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/testRG-1804?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "43", "Content-Type": "application/json", - "traceparent": "00-734edf07abe32c469a3046b91b208255-3da7a9351fb28f40-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d9e1b3ddf3d4a741fcb61c85f2a5e474", + "traceparent": "00-6a40ad44c2ce5063aa252a5d04bf5409-e5c3c7894c6114c2-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "54da0f85ba94bb53dc96f5aca6abc6a6", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -79,19 +66,19 @@ "Cache-Control": "no-cache", "Content-Length": "241", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 06:19:48 GMT", + "Date": "Wed, 26 Oct 2022 07:47:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "95f5f161-f069-4a70-83d0-e94281922d6f", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "95f5f161-f069-4a70-83d0-e94281922d6f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T061948Z:95f5f161-f069-4a70-83d0-e94281922d6f" + "x-ms-correlation-request-id": "bb164f70-f215-4e40-a8b1-235f458341e0", + "x-ms-ratelimit-remaining-subscription-writes": "1189", + "x-ms-request-id": "bb164f70-f215-4e40-a8b1-235f458341e0", + "x-ms-routing-request-id": "WESTUS2:20221026T074705Z:bb164f70-f215-4e40-a8b1-235f458341e0" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-2470", - "name": "testRG-2470", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-1804", + "name": "testRG-1804", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "tags": { @@ -103,16 +90,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-2470/providers/Microsoft.Cache/redis/RedisSchedules389?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-1804/providers/Microsoft.Cache/redis/RedisSchedules9965?api-version=2022-06-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "87", "Content-Type": "application/json", - "traceparent": "00-10f8e40c70b339449b2c39eb487635f4-74151855c2022f46-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c3edeca505dba1eb4b7888856594df2c", + "traceparent": "00-fcb7e8cb90435114060f046429231724-b5874251e61dd7e8-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b93b2a483a8123e251aa4e8caf6d1ef3", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -127,33 +114,33 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "c3edeca505dba1eb4b7888856594df2c", + "client-request-id": "b93b2a483a8123e251aa4e8caf6d1ef3", "Content-Length": "826", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 06:19:54 GMT", + "Date": "Wed, 26 Oct 2022 07:47:06 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-2470/providers/Microsoft.Cache/redis/RedisSchedules389?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-1804/providers/Microsoft.Cache/redis/RedisSchedules9965?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8381ea2a-390e-4859-a641-873413fafb18", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "524fb343-30a7-4c15-a87f-573b5b5a584b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T061954Z:8381ea2a-390e-4859-a641-873413fafb18", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "fb7e2207-8745-487c-bc54-f8ee5c5cdb83", + "x-ms-ratelimit-remaining-subscription-writes": "1188", + "x-ms-request-id": "df21277e-16c4-478a-a3b5-3e7d5d069f8e", + "x-ms-routing-request-id": "WESTUS2:20221026T074707Z:fb7e2207-8745-487c-bc54-f8ee5c5cdb83", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-2470/providers/Microsoft.Cache/Redis/RedisSchedules389", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-1804/providers/Microsoft.Cache/Redis/RedisSchedules9965", "location": "East US", - "name": "RedisSchedules389", + "name": "RedisSchedules9965", "type": "Microsoft.Cache/Redis", "tags": {}, "properties": { "provisioningState": "Creating", - "redisVersion": "4.0.14", + "redisVersion": "6.0", "sku": { "name": "Premium", "family": "P", @@ -183,7 +170,7 @@ "primaryKey": "Sanitized", "secondaryKey": "Sanitized" }, - "hostName": "RedisSchedules389.redis.cache.windows.net", + "hostName": "RedisSchedules9965.redis.cache.windows.net", "port": 6379, "sslPort": 6380, "linkedServers": [] @@ -191,38 +178,243 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fcb7e8cb90435114060f046429231724-33db73003dea1ece-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c916a08fb3f0d404f7314210042f2d29", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "c916a08fb3f0d404f7314210042f2d29", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 07:47:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "08622915-1359-4b6b-af40-923ecb24c33c", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "8b9a1fee-f497-4123-bf81-ea245be22af6", + "x-ms-routing-request-id": "WESTUS2:20221026T074707Z:08622915-1359-4b6b-af40-923ecb24c33c", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e", + "name": "df21277e-16c4-478a-a3b5-3e7d5d069f8e", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fcb7e8cb90435114060f046429231724-438de19f733721a1-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2bf6b8d71d3c6cc99dade4aa2a89a88b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "2bf6b8d71d3c6cc99dade4aa2a89a88b", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 07:47:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1a0778f7-6003-47cb-befa-7cb7729611b0", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "11816f16-50e0-4d7a-bf1c-6d60786f22ff", + "x-ms-routing-request-id": "WESTUS2:20221026T074708Z:1a0778f7-6003-47cb-befa-7cb7729611b0", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e", + "name": "df21277e-16c4-478a-a3b5-3e7d5d069f8e", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fcb7e8cb90435114060f046429231724-01d49a071e9b0fa6-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0efc548e5456fc027bb6920e997c89a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "0efc548e5456fc027bb6920e997c89a5", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 07:47:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8292d2ec-082b-47e0-914f-276946427a05", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "8ceb63d8-2890-41ff-af72-f9667cdccbc0", + "x-ms-routing-request-id": "WESTUS2:20221026T074710Z:8292d2ec-082b-47e0-914f-276946427a05", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e", + "name": "df21277e-16c4-478a-a3b5-3e7d5d069f8e", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fcb7e8cb90435114060f046429231724-f2b903688c18aeb7-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c282e6a8f0cf72bed7a92c43cf59a96e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "c282e6a8f0cf72bed7a92c43cf59a96e", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 07:47:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "57f3baa1-b87f-491c-b6f7-637c7b41081a", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "608e3abd-c5d4-4d8a-b7ea-cc4b9b1d00d4", + "x-ms-routing-request-id": "WESTUS2:20221026T074711Z:57f3baa1-b87f-491c-b6f7-637c7b41081a", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e", + "name": "df21277e-16c4-478a-a3b5-3e7d5d069f8e", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fcb7e8cb90435114060f046429231724-3cbb9c54ad7d1de3-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b082b6881e3283d3b6f9af858bbad220", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "b082b6881e3283d3b6f9af858bbad220", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 07:47:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "19ea67b6-d037-4fa0-9551-e9157d10adf3", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "24edcf70-229f-4968-a2f4-b22814b25650", + "x-ms-routing-request-id": "WESTUS2:20221026T074713Z:19ea67b6-d037-4fa0-9551-e9157d10adf3", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e", + "name": "df21277e-16c4-478a-a3b5-3e7d5d069f8e", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-10f8e40c70b339449b2c39eb487635f4-cd0adcc3cb17da41-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "73db249fb08fae02f638897bb9229622", + "traceparent": "00-fcb7e8cb90435114060f046429231724-32855a455fafc08c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "44023f23e6069dbc958a37ac27be2d22", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "73db249fb08fae02f638897bb9229622", + "client-request-id": "44023f23e6069dbc958a37ac27be2d22", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:19:54 GMT", + "Date": "Wed, 26 Oct 2022 07:47:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4e4aca83-c3ab-462e-8054-d397082b131b", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "2292698e-85c6-45e1-b876-36eee54dc785", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T061954Z:4e4aca83-c3ab-462e-8054-d397082b131b", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "4e84e796-e74f-447f-9360-1573dedcc29e", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "796df0a5-1a1e-453b-8ad9-ec4e7178d20a", + "x-ms-routing-request-id": "WESTUS2:20221026T074717Z:4e84e796-e74f-447f-9360-1573dedcc29e", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b", - "name": "524fb343-30a7-4c15-a87f-573b5b5a584b", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e", + "name": "df21277e-16c4-478a-a3b5-3e7d5d069f8e", "status": "InProgress", "startTime": null, "endTime": null, @@ -232,38 +424,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-10f8e40c70b339449b2c39eb487635f4-125d8b54bed4f447-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1394583d511c79d8e2f5ee5b0c893b29", + "traceparent": "00-fcb7e8cb90435114060f046429231724-268630801ad10093-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e385230dd9fa8a7213fe0bd54139e71c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "1394583d511c79d8e2f5ee5b0c893b29", + "client-request-id": "e385230dd9fa8a7213fe0bd54139e71c", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:19:55 GMT", + "Date": "Wed, 26 Oct 2022 07:47:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1808147e-e31d-48b9-aac5-af3de5c4ce83", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "9e3faa1d-dbd3-4afd-8d95-898c95848eea", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T061956Z:1808147e-e31d-48b9-aac5-af3de5c4ce83", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "1342cddd-e948-4ad0-abb8-c598073af994", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "9613f00e-c29a-4cba-a4a5-5f24ef8aa795", + "x-ms-routing-request-id": "WESTUS2:20221026T074725Z:1342cddd-e948-4ad0-abb8-c598073af994", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b", - "name": "524fb343-30a7-4c15-a87f-573b5b5a584b", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e", + "name": "df21277e-16c4-478a-a3b5-3e7d5d069f8e", "status": "InProgress", "startTime": null, "endTime": null, @@ -273,38 +465,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-10f8e40c70b339449b2c39eb487635f4-39390e4cfd34944d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "40e54f686bb9ad9c90192b8ca28e3eb2", + "traceparent": "00-fcb7e8cb90435114060f046429231724-75b2b2dea7aeb38e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "8f200bd66557a267fae51ba8e6265bf7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "40e54f686bb9ad9c90192b8ca28e3eb2", + "client-request-id": "8f200bd66557a267fae51ba8e6265bf7", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:19:57 GMT", + "Date": "Wed, 26 Oct 2022 07:47:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bf95b47e-db7c-4535-8d4b-1e072c47affd", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "bc17354c-8d8a-41ee-9225-daf2dce664c8", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T061957Z:bf95b47e-db7c-4535-8d4b-1e072c47affd", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "38b7cb62-6acc-4518-b94f-b9a501d8a511", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "8c05b27a-1cd6-4808-ae9f-2f11faa72c84", + "x-ms-routing-request-id": "WESTUS2:20221026T074741Z:38b7cb62-6acc-4518-b94f-b9a501d8a511", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b", - "name": "524fb343-30a7-4c15-a87f-573b5b5a584b", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e", + "name": "df21277e-16c4-478a-a3b5-3e7d5d069f8e", "status": "InProgress", "startTime": null, "endTime": null, @@ -314,38 +506,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-10f8e40c70b339449b2c39eb487635f4-7951b84ac1df2842-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0d23d6e8fb8d4d1c4c619099c1a6a16c", + "traceparent": "00-fcb7e8cb90435114060f046429231724-ac8cc50482858119-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "67788dccef344a26cd783108dae65c5c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "0d23d6e8fb8d4d1c4c619099c1a6a16c", + "client-request-id": "67788dccef344a26cd783108dae65c5c", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:19:58 GMT", + "Date": "Wed, 26 Oct 2022 07:48:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c7fc5487-88e4-455f-8ee9-6cbd68d8fb0f", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "a4049abd-d6f0-4e77-bf86-214b6a943788", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T061958Z:c7fc5487-88e4-455f-8ee9-6cbd68d8fb0f", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "5c4bf831-9b72-4144-a341-9dc7ab83b288", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "33e7a358-44c2-432c-b038-40eb21546f68", + "x-ms-routing-request-id": "WESTUS2:20221026T074813Z:5c4bf831-9b72-4144-a341-9dc7ab83b288", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b", - "name": "524fb343-30a7-4c15-a87f-573b5b5a584b", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e", + "name": "df21277e-16c4-478a-a3b5-3e7d5d069f8e", "status": "InProgress", "startTime": null, "endTime": null, @@ -355,38 +547,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-10f8e40c70b339449b2c39eb487635f4-4241582065ba7e4f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6a1260fc563cd268bbe68303264bd753", + "traceparent": "00-fcb7e8cb90435114060f046429231724-ca7fa7c850a41753-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1cd51aa39d9ea7cbbbe3e914bdc9a3ec", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "6a1260fc563cd268bbe68303264bd753", + "client-request-id": "1cd51aa39d9ea7cbbbe3e914bdc9a3ec", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:20:00 GMT", + "Date": "Wed, 26 Oct 2022 07:48:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "65d5ef62-cbd8-4314-95ad-7ee9925afb78", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "7a3d7f6f-d198-4ec7-a50a-000696786834", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T062001Z:65d5ef62-cbd8-4314-95ad-7ee9925afb78", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "07ed751c-a61b-4f7b-920f-9af22f223cbb", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "e2c6260a-02f2-400a-a54b-bae5b8b21677", + "x-ms-routing-request-id": "WESTUS2:20221026T074845Z:07ed751c-a61b-4f7b-920f-9af22f223cbb", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b", - "name": "524fb343-30a7-4c15-a87f-573b5b5a584b", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e", + "name": "df21277e-16c4-478a-a3b5-3e7d5d069f8e", "status": "InProgress", "startTime": null, "endTime": null, @@ -396,38 +588,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-10f8e40c70b339449b2c39eb487635f4-dfdc11d496c34244-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "35733cb72e656c9c3398f457da03ece9", + "traceparent": "00-fcb7e8cb90435114060f046429231724-57fdf39bd560ac3a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b30914a27fc0e7e8e4d6c1de335fc813", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "35733cb72e656c9c3398f457da03ece9", + "client-request-id": "b30914a27fc0e7e8e4d6c1de335fc813", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:20:05 GMT", + "Date": "Wed, 26 Oct 2022 07:49:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b674b975-a7c0-4607-8bc1-aa6233042ed9", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "8a4f0477-9ed6-4294-bc05-a2e80f57984b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T062005Z:b674b975-a7c0-4607-8bc1-aa6233042ed9", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "51e8afc0-602e-4074-8086-806f15605041", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "49af9fc1-235a-4a41-9004-7ea8d584a097", + "x-ms-routing-request-id": "WESTUS2:20221026T074918Z:51e8afc0-602e-4074-8086-806f15605041", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b", - "name": "524fb343-30a7-4c15-a87f-573b5b5a584b", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e", + "name": "df21277e-16c4-478a-a3b5-3e7d5d069f8e", "status": "InProgress", "startTime": null, "endTime": null, @@ -437,38 +629,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-10f8e40c70b339449b2c39eb487635f4-46b65af4a8e5d24d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "428fbf77d47c92756d5151a678182700", + "traceparent": "00-fcb7e8cb90435114060f046429231724-be2cbbaa20d5a599-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "cc05be883f502f59c1d0ac5106118c03", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "428fbf77d47c92756d5151a678182700", + "client-request-id": "cc05be883f502f59c1d0ac5106118c03", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:20:13 GMT", + "Date": "Wed, 26 Oct 2022 07:49:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9a2eeb3f-b411-4b92-bcaf-805175d0735b", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "5c6774d9-6b19-498d-8286-9c929a807196", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T062013Z:9a2eeb3f-b411-4b92-bcaf-805175d0735b", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "e2fcbfd9-efb8-477c-af35-a36b1c6ec435", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "59cf4a75-2dbe-41fb-a6a5-6e65fc658445", + "x-ms-routing-request-id": "WESTUS2:20221026T074950Z:e2fcbfd9-efb8-477c-af35-a36b1c6ec435", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b", - "name": "524fb343-30a7-4c15-a87f-573b5b5a584b", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e", + "name": "df21277e-16c4-478a-a3b5-3e7d5d069f8e", "status": "InProgress", "startTime": null, "endTime": null, @@ -478,38 +670,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-10f8e40c70b339449b2c39eb487635f4-8b932000714cd747-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "85e23d8a6b33ce07c3a537a46210f7b8", + "traceparent": "00-fcb7e8cb90435114060f046429231724-ddf29ef3c33ad051-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c66544d5a8dd249b32ee37c7dbec735c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "85e23d8a6b33ce07c3a537a46210f7b8", + "client-request-id": "c66544d5a8dd249b32ee37c7dbec735c", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:20:29 GMT", + "Date": "Wed, 26 Oct 2022 07:50:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "04975436-599a-43c9-9217-048f8a3a61a8", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "b12dc4e8-8232-440a-9a69-241794d43382", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T062030Z:04975436-599a-43c9-9217-048f8a3a61a8", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "9abfe5d4-470b-4138-9a2c-5dc74c33fb33", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "bd284915-6734-4220-aca2-3ec58e22f173", + "x-ms-routing-request-id": "WESTUS2:20221026T075022Z:9abfe5d4-470b-4138-9a2c-5dc74c33fb33", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b", - "name": "524fb343-30a7-4c15-a87f-573b5b5a584b", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e", + "name": "df21277e-16c4-478a-a3b5-3e7d5d069f8e", "status": "InProgress", "startTime": null, "endTime": null, @@ -519,38 +711,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-10f8e40c70b339449b2c39eb487635f4-d7194abd58b2024f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "678b99fa94bce2d7c6e0c813ddf5f41a", + "traceparent": "00-fcb7e8cb90435114060f046429231724-43e36ba40b16b287-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ff8bd51ad7c4639bbad9f1f0d397e0d3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "678b99fa94bce2d7c6e0c813ddf5f41a", + "client-request-id": "ff8bd51ad7c4639bbad9f1f0d397e0d3", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:21:01 GMT", + "Date": "Wed, 26 Oct 2022 07:50:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b182d2eb-b3a5-4aeb-883e-d375ee89dac7", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "6a73f608-517c-4178-999f-fe8953d08c73", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T062102Z:b182d2eb-b3a5-4aeb-883e-d375ee89dac7", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "68c63f87-d868-4a37-8434-62804a6a5f99", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "40fd0abc-6ee4-4b48-b5f9-6598b1913c4f", + "x-ms-routing-request-id": "WESTUS2:20221026T075054Z:68c63f87-d868-4a37-8434-62804a6a5f99", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b", - "name": "524fb343-30a7-4c15-a87f-573b5b5a584b", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e", + "name": "df21277e-16c4-478a-a3b5-3e7d5d069f8e", "status": "InProgress", "startTime": null, "endTime": null, @@ -560,38 +752,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-10f8e40c70b339449b2c39eb487635f4-36a7a3c289ab1d49-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9dccf37066200cb6b7c07ed69dd1305d", + "traceparent": "00-fcb7e8cb90435114060f046429231724-2af78544e053a174-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ef09be4a02f9e03622e19962089253d5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "9dccf37066200cb6b7c07ed69dd1305d", + "client-request-id": "ef09be4a02f9e03622e19962089253d5", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:21:34 GMT", + "Date": "Wed, 26 Oct 2022 07:51:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "098e7724-8031-459f-9982-dc8fc96e16ac", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "54016a1f-acb0-4a02-89c2-27f748fdd248", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T062135Z:098e7724-8031-459f-9982-dc8fc96e16ac", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "21f374e0-be54-441d-b137-1c365d60d76a", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "11725e9a-2d21-4d25-bfdb-8700598e4639", + "x-ms-routing-request-id": "WESTUS2:20221026T075126Z:21f374e0-be54-441d-b137-1c365d60d76a", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b", - "name": "524fb343-30a7-4c15-a87f-573b5b5a584b", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e", + "name": "df21277e-16c4-478a-a3b5-3e7d5d069f8e", "status": "InProgress", "startTime": null, "endTime": null, @@ -601,38 +793,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-10f8e40c70b339449b2c39eb487635f4-52dd4d1dccbc434d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "deab985ac08df5446500bf52a3f3f1cd", + "traceparent": "00-fcb7e8cb90435114060f046429231724-f6e2958861c23f60-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "30364f5c8c85fe3fa9020b03b6ab509a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "deab985ac08df5446500bf52a3f3f1cd", + "client-request-id": "30364f5c8c85fe3fa9020b03b6ab509a", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:22:06 GMT", + "Date": "Wed, 26 Oct 2022 07:51:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "12ea93fe-ac4c-4190-b508-2d69e08dbe4a", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "96ac0ee9-f914-4383-b1b8-8358d3fa89e9", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T062207Z:12ea93fe-ac4c-4190-b508-2d69e08dbe4a", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "a2e2dcee-f458-4412-846f-a38af4a777b2", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "d12108b6-58b1-4dde-8fa1-502ff94f2f08", + "x-ms-routing-request-id": "WESTUS2:20221026T075158Z:a2e2dcee-f458-4412-846f-a38af4a777b2", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b", - "name": "524fb343-30a7-4c15-a87f-573b5b5a584b", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e", + "name": "df21277e-16c4-478a-a3b5-3e7d5d069f8e", "status": "InProgress", "startTime": null, "endTime": null, @@ -642,38 +834,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-10f8e40c70b339449b2c39eb487635f4-3a25cb1bfe2ca848-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6e331cb159439497e37faffb160145f4", + "traceparent": "00-fcb7e8cb90435114060f046429231724-00d5bbf5d1c9ef8d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1d7d640d84e218629eabdce33d385a28", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "6e331cb159439497e37faffb160145f4", + "client-request-id": "1d7d640d84e218629eabdce33d385a28", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:22:39 GMT", + "Date": "Wed, 26 Oct 2022 07:52:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "035e97cf-f48a-4bae-8f6a-66415570a114", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "3efe084d-b051-4d38-a330-2fcba7ba573d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T062239Z:035e97cf-f48a-4bae-8f6a-66415570a114", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "cf70a830-919d-4d99-814b-a8915cac6829", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "0884ab45-a193-4616-a77e-759b145e0349", + "x-ms-routing-request-id": "WESTUS2:20221026T075230Z:cf70a830-919d-4d99-814b-a8915cac6829", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b", - "name": "524fb343-30a7-4c15-a87f-573b5b5a584b", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e", + "name": "df21277e-16c4-478a-a3b5-3e7d5d069f8e", "status": "InProgress", "startTime": null, "endTime": null, @@ -683,38 +875,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-10f8e40c70b339449b2c39eb487635f4-7041e9c8355a5746-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "44b96bb0154ab08cafd73820a66468c4", + "traceparent": "00-fcb7e8cb90435114060f046429231724-9f377deb8690cd40-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "83931c86b060bd4d7f0b45f7f6332a77", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "44b96bb0154ab08cafd73820a66468c4", + "client-request-id": "83931c86b060bd4d7f0b45f7f6332a77", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:23:11 GMT", + "Date": "Wed, 26 Oct 2022 07:53:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2d23d145-7cb4-427c-a15b-8216e8069e40", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "b45bb8e4-7966-4c0c-b5a8-3264bb95e339", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T062312Z:2d23d145-7cb4-427c-a15b-8216e8069e40", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "14b89e40-d3f7-4132-a7b5-e8410ecac79d", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "9f4c823c-d61f-4b97-9cfa-2fa1e3f6bc62", + "x-ms-routing-request-id": "WESTUS2:20221026T075303Z:14b89e40-d3f7-4132-a7b5-e8410ecac79d", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b", - "name": "524fb343-30a7-4c15-a87f-573b5b5a584b", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e", + "name": "df21277e-16c4-478a-a3b5-3e7d5d069f8e", "status": "InProgress", "startTime": null, "endTime": null, @@ -724,38 +916,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-10f8e40c70b339449b2c39eb487635f4-22d48e7f76d44945-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "8025b0cfc19d01190017fb0e1148df63", + "traceparent": "00-fcb7e8cb90435114060f046429231724-c3be9a62adc48302-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a455fe903615d7f3ed1e92dab05bc070", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "8025b0cfc19d01190017fb0e1148df63", + "client-request-id": "a455fe903615d7f3ed1e92dab05bc070", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:23:44 GMT", + "Date": "Wed, 26 Oct 2022 07:53:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1f269639-a09b-43a6-a1cd-2f9c54898618", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "02fedbf3-6b1c-43dc-adf3-a6691c6908f0", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T062344Z:1f269639-a09b-43a6-a1cd-2f9c54898618", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "7418057a-1480-429a-8d64-4d1cffe39edb", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "43591270-c77b-4d08-9a81-0e90544cbf64", + "x-ms-routing-request-id": "WESTUS2:20221026T075335Z:7418057a-1480-429a-8d64-4d1cffe39edb", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b", - "name": "524fb343-30a7-4c15-a87f-573b5b5a584b", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e", + "name": "df21277e-16c4-478a-a3b5-3e7d5d069f8e", "status": "InProgress", "startTime": null, "endTime": null, @@ -765,38 +957,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-10f8e40c70b339449b2c39eb487635f4-bec3a0ea0822404b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "38a1cabaac3a9b838f82bf6c2177ed7e", + "traceparent": "00-fcb7e8cb90435114060f046429231724-7a8fe13f0976d7a6-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "9a7ce3a7cd185d3916bf9dd63f6a216b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "38a1cabaac3a9b838f82bf6c2177ed7e", + "client-request-id": "9a7ce3a7cd185d3916bf9dd63f6a216b", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:24:16 GMT", + "Date": "Wed, 26 Oct 2022 07:54:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c7569d2f-b049-4b30-b9b6-ec9c5d0224de", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "65e9ad97-ada0-4eb0-9ea9-52e2640e71bf", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T062416Z:c7569d2f-b049-4b30-b9b6-ec9c5d0224de", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "3281cd0c-1d62-41fa-a23f-b9290e8ffc0a", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "fe8e83ee-4ee4-4055-86e2-1e9a20ffd2b8", + "x-ms-routing-request-id": "WESTUS2:20221026T075407Z:3281cd0c-1d62-41fa-a23f-b9290e8ffc0a", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b", - "name": "524fb343-30a7-4c15-a87f-573b5b5a584b", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e", + "name": "df21277e-16c4-478a-a3b5-3e7d5d069f8e", "status": "InProgress", "startTime": null, "endTime": null, @@ -806,38 +998,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-10f8e40c70b339449b2c39eb487635f4-6fa49944f8b32948-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "662cea16c4dcef5752b844321a7e9f66", + "traceparent": "00-fcb7e8cb90435114060f046429231724-36f923457e480bd1-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3e536481b6e3501329bb95421d730c23", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "662cea16c4dcef5752b844321a7e9f66", + "client-request-id": "3e536481b6e3501329bb95421d730c23", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:24:48 GMT", + "Date": "Wed, 26 Oct 2022 07:54:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eb03a7f8-9b02-4039-9eb2-3da05ab8e44e", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "1912c85a-5e6a-4172-9fd2-888108e249de", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T062449Z:eb03a7f8-9b02-4039-9eb2-3da05ab8e44e", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "51580e41-84e2-4e43-8275-8a613afa381b", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "fd9fb1c9-49f4-4dd3-b7e2-ada69f39627d", + "x-ms-routing-request-id": "WESTUS2:20221026T075439Z:51580e41-84e2-4e43-8275-8a613afa381b", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b", - "name": "524fb343-30a7-4c15-a87f-573b5b5a584b", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e", + "name": "df21277e-16c4-478a-a3b5-3e7d5d069f8e", "status": "InProgress", "startTime": null, "endTime": null, @@ -847,38 +1039,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-10f8e40c70b339449b2c39eb487635f4-d8f568b8fc2fd44e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "dc65d4f830c2228a2c89f01a01ace089", + "traceparent": "00-fcb7e8cb90435114060f046429231724-eb7b5d926ae1f604-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "124fd54b90b6c25fc4f88d55981c9882", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "dc65d4f830c2228a2c89f01a01ace089", + "client-request-id": "124fd54b90b6c25fc4f88d55981c9882", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:25:21 GMT", + "Date": "Wed, 26 Oct 2022 07:55:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1901f1c9-aca9-4479-ada0-f34c07d31848", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "9bcc8653-2c72-43c0-b707-cadc02deb17f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T062522Z:1901f1c9-aca9-4479-ada0-f34c07d31848", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "029dda88-bf92-4a0d-b378-dead9914023a", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "274c54ea-1f3a-455d-a4c4-0f39d3bb72b7", + "x-ms-routing-request-id": "WESTUS2:20221026T075511Z:029dda88-bf92-4a0d-b378-dead9914023a", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b", - "name": "524fb343-30a7-4c15-a87f-573b5b5a584b", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e", + "name": "df21277e-16c4-478a-a3b5-3e7d5d069f8e", "status": "InProgress", "startTime": null, "endTime": null, @@ -888,38 +1080,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-10f8e40c70b339449b2c39eb487635f4-d3ca4d433201f246-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "26f77c2a781bf68773b2e68268518011", + "traceparent": "00-fcb7e8cb90435114060f046429231724-73e5aa2a309bb0bc-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4b5926fc8108f18dd02c705c38f73fa3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "26f77c2a781bf68773b2e68268518011", + "client-request-id": "4b5926fc8108f18dd02c705c38f73fa3", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:25:54 GMT", + "Date": "Wed, 26 Oct 2022 07:55:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cad69195-1d15-4bb5-b1ae-8ca3d5ba5d9d", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "1f4caa01-27db-477e-82b3-849f76315b6a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T062554Z:cad69195-1d15-4bb5-b1ae-8ca3d5ba5d9d", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "26f98789-ae6c-4c80-be44-64699888f8b1", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "2c5b5437-0c9c-4c07-93b6-69b58955a1f9", + "x-ms-routing-request-id": "WESTUS2:20221026T075543Z:26f98789-ae6c-4c80-be44-64699888f8b1", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b", - "name": "524fb343-30a7-4c15-a87f-573b5b5a584b", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e", + "name": "df21277e-16c4-478a-a3b5-3e7d5d069f8e", "status": "InProgress", "startTime": null, "endTime": null, @@ -929,38 +1121,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-10f8e40c70b339449b2c39eb487635f4-fb9ab46a4512264c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4c7458e31011e6bc600a3952d33ceda5", + "traceparent": "00-fcb7e8cb90435114060f046429231724-f014b70a362c7ac6-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "698b7ab20f1bf0b4059079eb28bdb70c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "4c7458e31011e6bc600a3952d33ceda5", + "client-request-id": "698b7ab20f1bf0b4059079eb28bdb70c", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:26:26 GMT", + "Date": "Wed, 26 Oct 2022 07:56:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9e08a441-b9d4-451e-82bf-217feffbf24e", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "78a0edd8-daca-4323-b119-611a42efc847", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T062627Z:9e08a441-b9d4-451e-82bf-217feffbf24e", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "fb68fea8-1785-4966-83ff-6e9f3bd006c2", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "ee0edf65-18c1-45ad-94db-cb5ed3f729bf", + "x-ms-routing-request-id": "WESTUS2:20221026T075615Z:fb68fea8-1785-4966-83ff-6e9f3bd006c2", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b", - "name": "524fb343-30a7-4c15-a87f-573b5b5a584b", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e", + "name": "df21277e-16c4-478a-a3b5-3e7d5d069f8e", "status": "InProgress", "startTime": null, "endTime": null, @@ -970,38 +1162,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-10f8e40c70b339449b2c39eb487635f4-6a53625d07555645-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9d07bad879877f4b4c6f680f4908b9da", + "traceparent": "00-fcb7e8cb90435114060f046429231724-4b9f2b56da2c2b51-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f7461323c119c91b485e428a1f028acd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "9d07bad879877f4b4c6f680f4908b9da", + "client-request-id": "f7461323c119c91b485e428a1f028acd", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:26:58 GMT", + "Date": "Wed, 26 Oct 2022 07:56:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b7be8664-cb64-4243-ae5b-fb22a6de4be4", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "fca8b55d-0030-45f8-a5b9-04d35275a8ca", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T062659Z:b7be8664-cb64-4243-ae5b-fb22a6de4be4", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "edf1c0ff-ab7a-4192-9b95-6f667bbe4c51", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "6184f9b4-7ada-4a62-b700-17460c3f29ad", + "x-ms-routing-request-id": "WESTUS2:20221026T075648Z:edf1c0ff-ab7a-4192-9b95-6f667bbe4c51", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b", - "name": "524fb343-30a7-4c15-a87f-573b5b5a584b", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e", + "name": "df21277e-16c4-478a-a3b5-3e7d5d069f8e", "status": "InProgress", "startTime": null, "endTime": null, @@ -1011,38 +1203,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-10f8e40c70b339449b2c39eb487635f4-934b68988bfbbd4a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a937df0893371977bf11c5113e352237", + "traceparent": "00-fcb7e8cb90435114060f046429231724-ecd6bb99bc1aeb69-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1ea2e9b82e91ec677268457707a1c812", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "a937df0893371977bf11c5113e352237", + "client-request-id": "1ea2e9b82e91ec677268457707a1c812", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:27:31 GMT", + "Date": "Wed, 26 Oct 2022 07:57:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d79c813f-676c-416b-af75-3f6d2f13a700", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "284ffc29-ce47-43d3-b7c5-2d284c77b4f1", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T062731Z:d79c813f-676c-416b-af75-3f6d2f13a700", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "309f7d17-3cb3-4486-ba34-178f25e76558", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "5735292b-7e24-40eb-b556-ed0dc4356925", + "x-ms-routing-request-id": "WESTUS2:20221026T075720Z:309f7d17-3cb3-4486-ba34-178f25e76558", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b", - "name": "524fb343-30a7-4c15-a87f-573b5b5a584b", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e", + "name": "df21277e-16c4-478a-a3b5-3e7d5d069f8e", "status": "InProgress", "startTime": null, "endTime": null, @@ -1052,38 +1244,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-10f8e40c70b339449b2c39eb487635f4-6c58e41058f55049-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ada940c4e34a698a0df4ffa1a7ad9c58", + "traceparent": "00-fcb7e8cb90435114060f046429231724-c32040075f7783ff-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2539647448b0f1895ec121bccd2ad103", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "ada940c4e34a698a0df4ffa1a7ad9c58", + "client-request-id": "2539647448b0f1895ec121bccd2ad103", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:28:03 GMT", + "Date": "Wed, 26 Oct 2022 07:57:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f27910b7-7ea4-4082-9e9b-6e53a3837f27", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "36f44b63-5dd3-4ffc-ab55-aff5419bf70a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T062804Z:f27910b7-7ea4-4082-9e9b-6e53a3837f27", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "d7760d64-4155-4295-b2c1-b6e08ddfff17", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "ccc98245-d776-4cba-b1d2-6d08341b0c1d", + "x-ms-routing-request-id": "WESTUS2:20221026T075752Z:d7760d64-4155-4295-b2c1-b6e08ddfff17", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b", - "name": "524fb343-30a7-4c15-a87f-573b5b5a584b", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e", + "name": "df21277e-16c4-478a-a3b5-3e7d5d069f8e", "status": "InProgress", "startTime": null, "endTime": null, @@ -1093,38 +1285,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-10f8e40c70b339449b2c39eb487635f4-98c9e1792c7c544b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f4495f504404446d43eddd76b3394017", + "traceparent": "00-fcb7e8cb90435114060f046429231724-80c3588eab4162b2-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3e32ac06991af47bab5985b17ba3c1a6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "f4495f504404446d43eddd76b3394017", + "client-request-id": "3e32ac06991af47bab5985b17ba3c1a6", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:28:36 GMT", + "Date": "Wed, 26 Oct 2022 07:58:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2daf6e7b-f820-44e2-9ef3-b35ba5e3c12b", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "76069e9c-97fd-4264-a530-3730f65abb6d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T062836Z:2daf6e7b-f820-44e2-9ef3-b35ba5e3c12b", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "5c7f1001-c965-41c9-955b-9c4dd1e9dfcd", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "2b977212-ca31-43e8-b9de-1715a7ebf37a", + "x-ms-routing-request-id": "WESTUS2:20221026T075824Z:5c7f1001-c965-41c9-955b-9c4dd1e9dfcd", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b", - "name": "524fb343-30a7-4c15-a87f-573b5b5a584b", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e", + "name": "df21277e-16c4-478a-a3b5-3e7d5d069f8e", "status": "InProgress", "startTime": null, "endTime": null, @@ -1134,38 +1326,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-10f8e40c70b339449b2c39eb487635f4-32c248cf8b144e44-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "084a314d0b5e259055cd9b4293d57112", + "traceparent": "00-fcb7e8cb90435114060f046429231724-c9b436588f4e9f2e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "bb152f9664c9701d60b1bfcf0caa1f47", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "084a314d0b5e259055cd9b4293d57112", + "client-request-id": "bb152f9664c9701d60b1bfcf0caa1f47", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:29:08 GMT", + "Date": "Wed, 26 Oct 2022 07:58:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "08587a5f-3042-4cba-9454-c9f254f5ab47", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "4dfc4f3f-1036-4b66-8e47-c3464ffff223", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T062908Z:08587a5f-3042-4cba-9454-c9f254f5ab47", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "cab68105-38db-492d-97bd-b08e3c524b75", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "11cbd674-c5a0-402b-ba48-4dbaba5394ab", + "x-ms-routing-request-id": "WESTUS2:20221026T075856Z:cab68105-38db-492d-97bd-b08e3c524b75", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b", - "name": "524fb343-30a7-4c15-a87f-573b5b5a584b", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e", + "name": "df21277e-16c4-478a-a3b5-3e7d5d069f8e", "status": "InProgress", "startTime": null, "endTime": null, @@ -1175,38 +1367,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-10f8e40c70b339449b2c39eb487635f4-dae831fbbc73d046-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "dfc06c742deb8032d2656a5c0514b5d3", + "traceparent": "00-fcb7e8cb90435114060f046429231724-db275683ef741bc0-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5b704296896edaf8e8447956c3d876bb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "dfc06c742deb8032d2656a5c0514b5d3", + "client-request-id": "5b704296896edaf8e8447956c3d876bb", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:29:40 GMT", + "Date": "Wed, 26 Oct 2022 07:59:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "03bc0bc3-2102-4fbd-8cde-bab5c641196b", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "1d0f9939-cecf-4ade-a3a4-b2259ddd795c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T062941Z:03bc0bc3-2102-4fbd-8cde-bab5c641196b", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "3711476d-738e-4257-ab4a-1c2b7100a1b5", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "401392ec-0649-4db6-96bd-eb8966744708", + "x-ms-routing-request-id": "WESTUS2:20221026T075928Z:3711476d-738e-4257-ab4a-1c2b7100a1b5", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b", - "name": "524fb343-30a7-4c15-a87f-573b5b5a584b", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e", + "name": "df21277e-16c4-478a-a3b5-3e7d5d069f8e", "status": "InProgress", "startTime": null, "endTime": null, @@ -1216,38 +1408,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-10f8e40c70b339449b2c39eb487635f4-6e2022915a9b1845-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "7654e7b4946245face249f37a82bb06d", + "traceparent": "00-fcb7e8cb90435114060f046429231724-3a4ec359c205793a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "9d267b001614a23a8ec2de69daace700", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "7654e7b4946245face249f37a82bb06d", + "client-request-id": "9d267b001614a23a8ec2de69daace700", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:30:12 GMT", + "Date": "Wed, 26 Oct 2022 08:00:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3fd44d92-7c73-4c2a-82bb-4c7d749786f9", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "e302bde7-3e2c-4a98-bc3a-f75c530f3328", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T063013Z:3fd44d92-7c73-4c2a-82bb-4c7d749786f9", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "9b891f1b-36c2-48a7-860f-6bc3dd924a22", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "2f2cede3-281a-4a93-a5c3-ede9c33dd45b", + "x-ms-routing-request-id": "WESTUS2:20221026T080000Z:9b891f1b-36c2-48a7-860f-6bc3dd924a22", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b", - "name": "524fb343-30a7-4c15-a87f-573b5b5a584b", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e", + "name": "df21277e-16c4-478a-a3b5-3e7d5d069f8e", "status": "InProgress", "startTime": null, "endTime": null, @@ -1257,38 +1449,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-10f8e40c70b339449b2c39eb487635f4-60e0e75e6aff064a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4701cb7b61781f2cffca35f9a0342040", + "traceparent": "00-fcb7e8cb90435114060f046429231724-4b60a3dedb4732de-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "381a3d3a65320c37373ad284eac7ad87", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "4701cb7b61781f2cffca35f9a0342040", + "client-request-id": "381a3d3a65320c37373ad284eac7ad87", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:30:45 GMT", + "Date": "Wed, 26 Oct 2022 08:00:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fbea6ca8-33f2-4ac4-985d-c414bb3462de", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "201614cf-d0a0-4690-b0b9-d30641b43c9b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T063045Z:fbea6ca8-33f2-4ac4-985d-c414bb3462de", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "5d27b020-2c6f-4022-ae81-cfbc01966707", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "08282a71-bf24-434a-831b-64918ea34886", + "x-ms-routing-request-id": "WESTUS2:20221026T080033Z:5d27b020-2c6f-4022-ae81-cfbc01966707", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b", - "name": "524fb343-30a7-4c15-a87f-573b5b5a584b", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e", + "name": "df21277e-16c4-478a-a3b5-3e7d5d069f8e", "status": "InProgress", "startTime": null, "endTime": null, @@ -1298,38 +1490,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-10f8e40c70b339449b2c39eb487635f4-f73a07e6f026f943-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ab8ec817fb80dfb0727b11c78efad7a7", + "traceparent": "00-fcb7e8cb90435114060f046429231724-02f996d5f7e74a62-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "91ce033a81847f3208ceccacaa8e003b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "ab8ec817fb80dfb0727b11c78efad7a7", + "client-request-id": "91ce033a81847f3208ceccacaa8e003b", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:31:18 GMT", + "Date": "Wed, 26 Oct 2022 08:01:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5ffb01ae-b816-463a-ab60-fcad275f6e07", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "0fd45645-97db-48f2-85d7-d7b82f74369f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T063119Z:5ffb01ae-b816-463a-ab60-fcad275f6e07", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "396e11b4-9d10-4a07-9362-6f235d3453b3", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "ea10aabf-e2cd-4424-8982-b6f0071a927d", + "x-ms-routing-request-id": "WESTUS2:20221026T080105Z:396e11b4-9d10-4a07-9362-6f235d3453b3", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b", - "name": "524fb343-30a7-4c15-a87f-573b5b5a584b", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e", + "name": "df21277e-16c4-478a-a3b5-3e7d5d069f8e", "status": "InProgress", "startTime": null, "endTime": null, @@ -1339,38 +1531,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-10f8e40c70b339449b2c39eb487635f4-39afeb8f0cd15547-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3ae1fdb46e12525abb3576975e01a499", + "traceparent": "00-fcb7e8cb90435114060f046429231724-af7562df717ac572-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "851c795c3dbd9a88431966d943b5b7c7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "3ae1fdb46e12525abb3576975e01a499", + "client-request-id": "851c795c3dbd9a88431966d943b5b7c7", "Content-Length": "352", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 06:31:51 GMT", + "Date": "Wed, 26 Oct 2022 08:01:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eda65e29-20c6-4299-96c7-c25c5d0bb9db", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "112d9954-c6af-4643-8ebb-72fa7676dbdf", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T063151Z:eda65e29-20c6-4299-96c7-c25c5d0bb9db", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "764c491e-c58d-476c-bb39-60b3571a5eb8", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "7c08609f-d738-41b3-99b7-d4c7f7a158f1", + "x-ms-routing-request-id": "WESTUS2:20221026T080137Z:764c491e-c58d-476c-bb39-60b3571a5eb8", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/524fb343-30a7-4c15-a87f-573b5b5a584b", - "name": "524fb343-30a7-4c15-a87f-573b5b5a584b", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/df21277e-16c4-478a-a3b5-3e7d5d069f8e", + "name": "df21277e-16c4-478a-a3b5-3e7d5d069f8e", "status": "Succeeded", "startTime": null, "endTime": null, @@ -1380,43 +1572,43 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-2470/providers/Microsoft.Cache/redis/RedisSchedules389?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-1804/providers/Microsoft.Cache/redis/RedisSchedules9965?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-10f8e40c70b339449b2c39eb487635f4-fbf8fb9cd413c141-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e01f5e03049c7fec1a22d4fd4f649105", + "traceparent": "00-fcb7e8cb90435114060f046429231724-5a4bab322c806750-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d62f571456ddb87c0a9a3063998b61a8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "e01f5e03049c7fec1a22d4fd4f649105", + "client-request-id": "d62f571456ddb87c0a9a3063998b61a8", "Content-Length": "776", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 06:31:51 GMT", + "Date": "Wed, 26 Oct 2022 08:01:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ba3ce1b8-cd8c-481b-977e-72b1f2c03e22", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "af8bbe3a-c221-43c5-b0a9-213ed694abed", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T063152Z:ba3ce1b8-cd8c-481b-977e-72b1f2c03e22", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "90d76635-d513-42e6-a066-7ba2236d731f", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "2a0b375a-8836-4839-b186-a59956e4df17", + "x-ms-routing-request-id": "WESTUS2:20221026T080137Z:90d76635-d513-42e6-a066-7ba2236d731f", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-2470/providers/Microsoft.Cache/Redis/RedisSchedules389", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-1804/providers/Microsoft.Cache/Redis/RedisSchedules9965", "location": "East US", - "name": "RedisSchedules389", + "name": "RedisSchedules9965", "type": "Microsoft.Cache/Redis", "tags": {}, "properties": { "provisioningState": "Succeeded", - "redisVersion": "4.0.14", + "redisVersion": "6.0", "sku": { "name": "Premium", "family": "P", @@ -1443,7 +1635,7 @@ "maxmemory-delta": "642" }, "accessKeys": null, - "hostName": "RedisSchedules389.redis.cache.windows.net", + "hostName": "RedisSchedules9965.redis.cache.windows.net", "port": 6379, "sslPort": 6380, "linkedServers": [] @@ -1451,16 +1643,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-2470/providers/Microsoft.Cache/redis/RedisSchedules389/forceReboot?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-1804/providers/Microsoft.Cache/redis/RedisSchedules9965/forceReboot?api-version=2022-06-01", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "25", "Content-Type": "application/json", - "traceparent": "00-98cf64c365334e4583ff22481d01c75a-fa0257eb0e29d548-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a3448ef3e653a82e6d3cf04b85198171", + "traceparent": "00-7540f480916e41358e3b61ac81d012c8-2a74ddf00ddbb5a2-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7128973a27aafcc97b344e6a1b593c52", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -1469,20 +1661,20 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "a3448ef3e653a82e6d3cf04b85198171", + "client-request-id": "7128973a27aafcc97b344e6a1b593c52", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 06:31:52 GMT", + "Date": "Wed, 26 Oct 2022 08:01:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d1a8d348-b2b0-4aab-b38f-87f2b50d2e82", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "262ab081-0bf6-46c1-b40a-afdcf71d69b3", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T063153Z:d1a8d348-b2b0-4aab-b38f-87f2b50d2e82", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "76380b4b-3ae4-4047-9fee-5dcbac1f13db", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-request-id": "0b446c0d-f433-4f97-a66c-a34376ca5127", + "x-ms-routing-request-id": "WESTUS2:20221026T080138Z:76380b4b-3ae4-4047-9fee-5dcbac1f13db", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { "message": "The requested reboot operation for \u0027Value\u0027 has been successfully scheduled and should be executed shortly." @@ -1491,8 +1683,8 @@ ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "475329704", + "RandomSeed": "509703638", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + "SUBSCRIPTION_ID": "3919658b-68ae-4509-8c17-6a2238340ae7" } } diff --git a/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/RebootFunctionalTests/CreateUpdateDeleteTestAsync.json b/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/RebootFunctionalTests/CreateUpdateDeleteTestAsync.json index 431ab5359f25..7845b7a94f8c 100644 --- a/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/RebootFunctionalTests/CreateUpdateDeleteTestAsync.json +++ b/sdk/redis/Azure.ResourceManager.Redis/tests/SessionRecords/RebootFunctionalTests/CreateUpdateDeleteTestAsync.json @@ -1,52 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5ef68857c3adfa439818b9518864a39d-0975719dce9e784d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "044d9ad10c9170cf92aec9221f2c9b79", + "traceparent": "00-69fdf9ea0cb7a68ac7af5ad916d8cdbc-fc912617b0eaf5ad-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2d772878a712696700d6d530285c49f8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "747", + "Content-Length": "405", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 07:01:30 GMT", + "Date": "Wed, 26 Oct 2022 08:01:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b70c1858-c076-4711-a8b2-f5c234bdce74", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-request-id": "b70c1858-c076-4711-a8b2-f5c234bdce74", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T070130Z:b70c1858-c076-4711-a8b2-f5c234bdce74" + "x-ms-correlation-request-id": "3b63607b-f9a2-49ca-94ba-48e07aa04714", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "3b63607b-f9a2-49ca-94ba-48e07aa04714", + "x-ms-routing-request-id": "WESTUS2:20221026T080140Z:3b63607b-f9a2-49ca-94ba-48e07aa04714" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7", "authorizationSource": "RoleBased", "managedByTenants": [], - "tags": { - "TagKey-9823": "TagValue-566", - "TagKey-3481": "TagValue-320", - "TagKey-4926": "TagValue-1187", - "TagKey-751": "TagValue-3921", - "TagKey-1866": "TagValue-8559", - "TagKey-3094": "TagValue-9190", - "TagKey-2449": "TagValue-9", - "TagKey-8379": "TagValue-164", - "TagKey-7470": "TagValue-2205", - "TagKey-4236": "TagValue-3698", - "TagKey-5316": "TagValue-2725" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "subscriptionId": "3919658b-68ae-4509-8c17-6a2238340ae7", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "displayName": "CacheTeam - Austin Tolani", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -56,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRG-5714?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/testRG-1047?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "43", "Content-Type": "application/json", - "traceparent": "00-001235ec4a282f418cad185b5c0d2756-6093c89d59afe946-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "caebbf211b3b420f92ad06b5f6655443", + "traceparent": "00-9c829be00c8ecabfe6d74908f890bdb4-7abfed23e4f73a24-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1417957d6a0662309f9f2c97e5129279", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -79,19 +66,19 @@ "Cache-Control": "no-cache", "Content-Length": "241", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 07:01:32 GMT", + "Date": "Wed, 26 Oct 2022 08:01:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6ef39ee0-d411-4bdc-8cf8-937bf9a85f70", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "6ef39ee0-d411-4bdc-8cf8-937bf9a85f70", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T070132Z:6ef39ee0-d411-4bdc-8cf8-937bf9a85f70" + "x-ms-correlation-request-id": "dd203b78-80af-4d97-b8f8-dfcdc15deaa8", + "x-ms-ratelimit-remaining-subscription-writes": "1189", + "x-ms-request-id": "dd203b78-80af-4d97-b8f8-dfcdc15deaa8", + "x-ms-routing-request-id": "WESTUS2:20221026T080141Z:dd203b78-80af-4d97-b8f8-dfcdc15deaa8" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-5714", - "name": "testRG-5714", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-1047", + "name": "testRG-1047", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "tags": { @@ -103,16 +90,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-5714/providers/Microsoft.Cache/redis/RedisSchedules4247?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-1047/providers/Microsoft.Cache/redis/RedisSchedules6027?api-version=2022-06-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "87", "Content-Type": "application/json", - "traceparent": "00-92fd6053156c9640b5f66af3612a36aa-c208779f552a8640-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "161afb92f1dc9ddf28e80cc116f4f139", + "traceparent": "00-914eba76cf3c60a3934ea9d8ca6b88ca-f2f3dd6e6788b740-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "df877cdd4252b296c9710f6a51d0dbb7", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -127,33 +114,33 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "161afb92f1dc9ddf28e80cc116f4f139", - "Content-Length": "829", + "client-request-id": "df877cdd4252b296c9710f6a51d0dbb7", + "Content-Length": "826", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 07:01:46 GMT", + "Date": "Wed, 26 Oct 2022 08:01:42 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-5714/providers/Microsoft.Cache/redis/RedisSchedules4247?api-version=2021-06-01", + "Location": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-1047/providers/Microsoft.Cache/redis/RedisSchedules6027?api-version=2022-06-01", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cea71b47-c410-4b04-b8e8-e26759549a71", - "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T070146Z:cea71b47-c410-4b04-b8e8-e26759549a71", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "336e02f8-0697-452d-a40f-e0087cce33e2", + "x-ms-ratelimit-remaining-subscription-writes": "1188", + "x-ms-request-id": "895d8664-8031-4488-88e4-dd16565a9a74", + "x-ms-routing-request-id": "WESTUS2:20221026T080143Z:336e02f8-0697-452d-a40f-e0087cce33e2", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-5714/providers/Microsoft.Cache/Redis/RedisSchedules4247", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-1047/providers/Microsoft.Cache/Redis/RedisSchedules6027", "location": "East US", - "name": "RedisSchedules4247", + "name": "RedisSchedules6027", "type": "Microsoft.Cache/Redis", "tags": {}, "properties": { "provisioningState": "Creating", - "redisVersion": "4.0.14", + "redisVersion": "6.0", "sku": { "name": "Premium", "family": "P", @@ -183,7 +170,7 @@ "primaryKey": "Sanitized", "secondaryKey": "Sanitized" }, - "hostName": "RedisSchedules4247.redis.cache.windows.net", + "hostName": "RedisSchedules6027.redis.cache.windows.net", "port": 6379, "sslPort": 6380, "linkedServers": [] @@ -191,38 +178,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-92fd6053156c9640b5f66af3612a36aa-ebf019250faeb146-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a09971dfb95fcd450c2d133302817cb8", + "traceparent": "00-914eba76cf3c60a3934ea9d8ca6b88ca-ba99ca5fbdc495a4-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "cc7fe2b7d170532b81623cf920f84ece", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "a09971dfb95fcd450c2d133302817cb8", + "client-request-id": "cc7fe2b7d170532b81623cf920f84ece", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 07:01:46 GMT", + "Date": "Wed, 26 Oct 2022 08:01:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "53602d48-37ec-419b-9b72-65039596359a", - "x-ms-ratelimit-remaining-subscription-reads": "11962", - "x-ms-request-id": "3038a023-8df3-4491-b167-bb79051ddac1", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T070146Z:53602d48-37ec-419b-9b72-65039596359a", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "e3fcc6a5-f9c3-49fa-9728-35cd78165a3a", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "4fd0c20c-42e3-4145-b457-115540453308", + "x-ms-routing-request-id": "WESTUS2:20221026T080143Z:e3fcc6a5-f9c3-49fa-9728-35cd78165a3a", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", - "name": "b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74", + "name": "895d8664-8031-4488-88e4-dd16565a9a74", "status": "InProgress", "startTime": null, "endTime": null, @@ -232,38 +219,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-92fd6053156c9640b5f66af3612a36aa-460bc3e8c06cfa47-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5c6d7b14891cfcc27cdc54dd9216e28b", + "traceparent": "00-914eba76cf3c60a3934ea9d8ca6b88ca-235ff098a5335eb3-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6ca2df5138716a83be4014df395be0ae", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "5c6d7b14891cfcc27cdc54dd9216e28b", + "client-request-id": "6ca2df5138716a83be4014df395be0ae", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 07:01:47 GMT", + "Date": "Wed, 26 Oct 2022 08:01:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ffaddfbb-36ec-4eee-a020-304bbf8c31cc", - "x-ms-ratelimit-remaining-subscription-reads": "11961", - "x-ms-request-id": "3ef2ca6e-5077-4f43-8b7e-664f4d6661d8", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T070148Z:ffaddfbb-36ec-4eee-a020-304bbf8c31cc", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "338636b8-5be7-42a6-8c60-33ed3477b4d9", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "84fbd742-9e89-4542-851b-523e2b431214", + "x-ms-routing-request-id": "WESTUS2:20221026T080144Z:338636b8-5be7-42a6-8c60-33ed3477b4d9", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", - "name": "b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74", + "name": "895d8664-8031-4488-88e4-dd16565a9a74", "status": "InProgress", "startTime": null, "endTime": null, @@ -273,38 +260,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-92fd6053156c9640b5f66af3612a36aa-c1aae295a67db64f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a4e1969f515bcedac36aadbe824a3b40", + "traceparent": "00-914eba76cf3c60a3934ea9d8ca6b88ca-6d896616a4325afa-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6eb3ccae0e5171467bcdbf5f35c426d3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "a4e1969f515bcedac36aadbe824a3b40", + "client-request-id": "6eb3ccae0e5171467bcdbf5f35c426d3", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 07:01:49 GMT", + "Date": "Wed, 26 Oct 2022 08:01:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5e428ad6-5ef2-435b-b941-30e09dbf795c", - "x-ms-ratelimit-remaining-subscription-reads": "11960", - "x-ms-request-id": "434e6d0f-3b4c-4853-8a77-7bb61ffe60c5", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T070149Z:5e428ad6-5ef2-435b-b941-30e09dbf795c", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "45abc0c8-ef67-4cee-9918-bf4cf1b624eb", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "ce4228a7-2410-44ee-b0a3-489e9ecd150d", + "x-ms-routing-request-id": "WESTUS2:20221026T080145Z:45abc0c8-ef67-4cee-9918-bf4cf1b624eb", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", - "name": "b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74", + "name": "895d8664-8031-4488-88e4-dd16565a9a74", "status": "InProgress", "startTime": null, "endTime": null, @@ -314,38 +301,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-92fd6053156c9640b5f66af3612a36aa-d25db3f8eb744b4b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3fb4a682ec2e5659af9c238265673bf5", + "traceparent": "00-914eba76cf3c60a3934ea9d8ca6b88ca-c8aa2975047b3b45-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f2e8392457797ed15e140e30bc4b1925", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "3fb4a682ec2e5659af9c238265673bf5", + "client-request-id": "f2e8392457797ed15e140e30bc4b1925", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 07:01:50 GMT", + "Date": "Wed, 26 Oct 2022 08:01:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "edc48135-64df-4acc-b934-972828319030", - "x-ms-ratelimit-remaining-subscription-reads": "11959", - "x-ms-request-id": "2044a318-584b-458d-8f60-5ce9dbd1f1a4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T070150Z:edc48135-64df-4acc-b934-972828319030", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "a104c572-a672-4313-a815-435da7f622cf", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "925cd403-bb57-415f-b84d-6e4550af5026", + "x-ms-routing-request-id": "WESTUS2:20221026T080146Z:a104c572-a672-4313-a815-435da7f622cf", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", - "name": "b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74", + "name": "895d8664-8031-4488-88e4-dd16565a9a74", "status": "InProgress", "startTime": null, "endTime": null, @@ -355,38 +342,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-92fd6053156c9640b5f66af3612a36aa-992bb84b40b9cf41-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6c94874bd7a0c25ca19e99b2dc037a31", + "traceparent": "00-914eba76cf3c60a3934ea9d8ca6b88ca-461de3a328f59e80-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "544a8e82df44437d9830f0a4792434fa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "6c94874bd7a0c25ca19e99b2dc037a31", + "client-request-id": "544a8e82df44437d9830f0a4792434fa", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 07:01:52 GMT", + "Date": "Wed, 26 Oct 2022 08:01:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0c9626bb-7778-4fa1-ad0d-dd0a3c84dc5b", - "x-ms-ratelimit-remaining-subscription-reads": "11958", - "x-ms-request-id": "89cb34ef-9e40-4d42-8273-d6e47e0443ca", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T070153Z:0c9626bb-7778-4fa1-ad0d-dd0a3c84dc5b", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "20cb679c-9d4b-4a4b-a830-74775821739a", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "f2136e23-5ec0-49b2-a1b2-9f5ff290a287", + "x-ms-routing-request-id": "WESTUS2:20221026T080148Z:20cb679c-9d4b-4a4b-a830-74775821739a", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", - "name": "b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74", + "name": "895d8664-8031-4488-88e4-dd16565a9a74", "status": "InProgress", "startTime": null, "endTime": null, @@ -396,38 +383,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-92fd6053156c9640b5f66af3612a36aa-531ff91e0538bb44-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "eb5b13a0a261b25c3c8bf5be2e57695b", + "traceparent": "00-914eba76cf3c60a3934ea9d8ca6b88ca-62ce6d9f88efde0e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "00ba411aed725735fa350f3cff16b530", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "eb5b13a0a261b25c3c8bf5be2e57695b", + "client-request-id": "00ba411aed725735fa350f3cff16b530", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 07:01:57 GMT", + "Date": "Wed, 26 Oct 2022 08:01:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b8e3bd85-a899-4578-8566-6dc0946a717e", - "x-ms-ratelimit-remaining-subscription-reads": "11957", - "x-ms-request-id": "594cd66e-1114-4d47-b944-0995b9e4a395", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T070157Z:b8e3bd85-a899-4578-8566-6dc0946a717e", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "9272cddb-b55e-4095-a3e1-c0ed80f56394", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "1e128950-e12f-4197-ba07-6c83afedc664", + "x-ms-routing-request-id": "WESTUS2:20221026T080152Z:9272cddb-b55e-4095-a3e1-c0ed80f56394", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", - "name": "b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74", + "name": "895d8664-8031-4488-88e4-dd16565a9a74", "status": "InProgress", "startTime": null, "endTime": null, @@ -437,38 +424,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-92fd6053156c9640b5f66af3612a36aa-86f1a2fe313a9d4a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "fa73b72eceb6aa9f4af19e9053a77aab", + "traceparent": "00-914eba76cf3c60a3934ea9d8ca6b88ca-c45fd01353e03f7a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a7dc9ab3d279458ebca55948662d053a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "fa73b72eceb6aa9f4af19e9053a77aab", + "client-request-id": "a7dc9ab3d279458ebca55948662d053a", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 07:02:05 GMT", + "Date": "Wed, 26 Oct 2022 08:02:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f64be23d-8a36-464d-ae97-602e7e82cdab", - "x-ms-ratelimit-remaining-subscription-reads": "11956", - "x-ms-request-id": "7b140f34-565a-413b-9d2d-8a5083c281dc", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T070205Z:f64be23d-8a36-464d-ae97-602e7e82cdab", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "a29b8f8c-fc15-4050-aa36-62116c150dc5", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "aaaefcbb-f69b-429f-8369-cf0ef564d2d8", + "x-ms-routing-request-id": "WESTUS2:20221026T080200Z:a29b8f8c-fc15-4050-aa36-62116c150dc5", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", - "name": "b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74", + "name": "895d8664-8031-4488-88e4-dd16565a9a74", "status": "InProgress", "startTime": null, "endTime": null, @@ -478,38 +465,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-92fd6053156c9640b5f66af3612a36aa-d37f40befc77ce4d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "51e2f121500ba8942ae12f14e29e9449", + "traceparent": "00-914eba76cf3c60a3934ea9d8ca6b88ca-806bdd1ef4668c36-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7a1514e0199094b259f3590fd0404381", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "51e2f121500ba8942ae12f14e29e9449", + "client-request-id": "7a1514e0199094b259f3590fd0404381", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 07:02:21 GMT", + "Date": "Wed, 26 Oct 2022 08:02:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4871683f-ba54-4352-a2be-d3ca6ed02961", - "x-ms-ratelimit-remaining-subscription-reads": "11955", - "x-ms-request-id": "226ff549-e2e8-453e-9adf-5b20f99fce3b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T070222Z:4871683f-ba54-4352-a2be-d3ca6ed02961", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "7545afef-7f3a-4953-a052-9e72a0ad32ad", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "d90c8171-76ee-47db-be83-d694c2c13e66", + "x-ms-routing-request-id": "WESTUS2:20221026T080217Z:7545afef-7f3a-4953-a052-9e72a0ad32ad", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", - "name": "b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74", + "name": "895d8664-8031-4488-88e4-dd16565a9a74", "status": "InProgress", "startTime": null, "endTime": null, @@ -519,38 +506,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-92fd6053156c9640b5f66af3612a36aa-40d738db29d7dc4c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "24833d358090d17b74b1a17004cc5f95", + "traceparent": "00-914eba76cf3c60a3934ea9d8ca6b88ca-362b969ce27a7b95-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "dff0bf7a8c484880b37543cd94ecf0cc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "24833d358090d17b74b1a17004cc5f95", + "client-request-id": "dff0bf7a8c484880b37543cd94ecf0cc", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 07:02:54 GMT", + "Date": "Wed, 26 Oct 2022 08:02:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "924d24e3-3547-4342-8eee-b1ce06c52fa7", - "x-ms-ratelimit-remaining-subscription-reads": "11954", - "x-ms-request-id": "0a0ac511-ffe5-4532-b7dc-fc05ca516245", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T070254Z:924d24e3-3547-4342-8eee-b1ce06c52fa7", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "4d75c16e-b0fc-44a8-84b8-58768b75182a", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "8b5cd1d8-1c2f-4ec7-912c-38b2f8a0f660", + "x-ms-routing-request-id": "WESTUS2:20221026T080249Z:4d75c16e-b0fc-44a8-84b8-58768b75182a", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", - "name": "b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74", + "name": "895d8664-8031-4488-88e4-dd16565a9a74", "status": "InProgress", "startTime": null, "endTime": null, @@ -560,38 +547,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-92fd6053156c9640b5f66af3612a36aa-598a52cbd2f48346-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3d9c49111875dd4f23cacfd49f8bc8ac", + "traceparent": "00-914eba76cf3c60a3934ea9d8ca6b88ca-929d8b5a9c36c70a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "eb5cd52f3b009a9fe7474e86787e757c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "3d9c49111875dd4f23cacfd49f8bc8ac", + "client-request-id": "eb5cd52f3b009a9fe7474e86787e757c", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 07:03:26 GMT", + "Date": "Wed, 26 Oct 2022 08:03:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4d6a45a4-af4e-4ef7-b0a8-2419f5d9423a", - "x-ms-ratelimit-remaining-subscription-reads": "11953", - "x-ms-request-id": "8fa40e09-3268-4892-9494-d69387e27441", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T070326Z:4d6a45a4-af4e-4ef7-b0a8-2419f5d9423a", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "7835fac0-af59-4ed5-8dee-33f9d6159a8b", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "d924fddb-4b77-4cc3-85ee-7fa813ed0792", + "x-ms-routing-request-id": "WESTUS2:20221026T080321Z:7835fac0-af59-4ed5-8dee-33f9d6159a8b", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", - "name": "b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74", + "name": "895d8664-8031-4488-88e4-dd16565a9a74", "status": "InProgress", "startTime": null, "endTime": null, @@ -601,38 +588,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-92fd6053156c9640b5f66af3612a36aa-1194b7c0f467b04b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "155a545d5523a11b7510dd5aaf24a35e", + "traceparent": "00-914eba76cf3c60a3934ea9d8ca6b88ca-b1e75d1de48bc5e2-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a7cdd761263d53f294cdc61bd5e4006c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "155a545d5523a11b7510dd5aaf24a35e", + "client-request-id": "a7cdd761263d53f294cdc61bd5e4006c", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 07:03:58 GMT", + "Date": "Wed, 26 Oct 2022 08:03:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1614f39e-26e6-429d-b7b5-4bc4c82beef5", - "x-ms-ratelimit-remaining-subscription-reads": "11952", - "x-ms-request-id": "62ba5d6a-0ccf-45fa-be0b-3f0c82e6f834", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T070359Z:1614f39e-26e6-429d-b7b5-4bc4c82beef5", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "6143d090-a9a0-49b8-910c-e6060edd5d54", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "62588165-9a7e-4a63-a3c6-e2dde1ace6fb", + "x-ms-routing-request-id": "WESTUS2:20221026T080353Z:6143d090-a9a0-49b8-910c-e6060edd5d54", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", - "name": "b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74", + "name": "895d8664-8031-4488-88e4-dd16565a9a74", "status": "InProgress", "startTime": null, "endTime": null, @@ -642,38 +629,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-92fd6053156c9640b5f66af3612a36aa-3947ee2a9c58fc4c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9903998257011dd4eda601c5b0a632e8", + "traceparent": "00-914eba76cf3c60a3934ea9d8ca6b88ca-9adc9cada82245fa-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "fadf8c0258e33f812055f7003ef9cf34", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "9903998257011dd4eda601c5b0a632e8", + "client-request-id": "fadf8c0258e33f812055f7003ef9cf34", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 07:04:30 GMT", + "Date": "Wed, 26 Oct 2022 08:04:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "089c709d-8d68-4cde-b6c9-c2aadaf8f9f8", - "x-ms-ratelimit-remaining-subscription-reads": "11951", - "x-ms-request-id": "22ffd675-1a88-45e9-a8c9-e9f8fc635fab", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T070431Z:089c709d-8d68-4cde-b6c9-c2aadaf8f9f8", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "11815f7a-0cee-4cb9-81b0-9feaea38ccef", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "15f18150-ab92-4232-b08d-1c44b6abb65d", + "x-ms-routing-request-id": "WESTUS2:20221026T080425Z:11815f7a-0cee-4cb9-81b0-9feaea38ccef", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", - "name": "b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74", + "name": "895d8664-8031-4488-88e4-dd16565a9a74", "status": "InProgress", "startTime": null, "endTime": null, @@ -683,38 +670,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-92fd6053156c9640b5f66af3612a36aa-22fe0722f86b4644-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b012f4e94a71bb712efbc7653af52dff", + "traceparent": "00-914eba76cf3c60a3934ea9d8ca6b88ca-8e26d357b4c7d8a9-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "bc6cc700491e098fe20957337484c402", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "b012f4e94a71bb712efbc7653af52dff", + "client-request-id": "bc6cc700491e098fe20957337484c402", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 07:05:03 GMT", + "Date": "Wed, 26 Oct 2022 08:04:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "12463eb4-2b0b-47a2-a4a7-9c02effd578a", - "x-ms-ratelimit-remaining-subscription-reads": "11950", - "x-ms-request-id": "459bfa87-e162-4715-bc05-32c424f6bb34", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T070504Z:12463eb4-2b0b-47a2-a4a7-9c02effd578a", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "2c34779c-39e5-46b6-af2d-4342a5544b07", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "329e0ebe-a31e-43f0-b9c3-5c5e0ba29606", + "x-ms-routing-request-id": "WESTUS2:20221026T080457Z:2c34779c-39e5-46b6-af2d-4342a5544b07", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", - "name": "b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74", + "name": "895d8664-8031-4488-88e4-dd16565a9a74", "status": "InProgress", "startTime": null, "endTime": null, @@ -724,38 +711,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-92fd6053156c9640b5f66af3612a36aa-101bf68ce82ee541-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "055271262e8705aa7f3d277d5355f0cf", + "traceparent": "00-914eba76cf3c60a3934ea9d8ca6b88ca-3e7ccb5a8097629e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "eb84e2477a9f0998568d86e72ef2149a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "055271262e8705aa7f3d277d5355f0cf", + "client-request-id": "eb84e2477a9f0998568d86e72ef2149a", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 07:05:35 GMT", + "Date": "Wed, 26 Oct 2022 08:05:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9b04d7a6-27e8-4278-a0d5-3839293ddeb8", - "x-ms-ratelimit-remaining-subscription-reads": "11949", - "x-ms-request-id": "f6dcb7d1-ec81-407d-8494-52e37d020566", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T070536Z:9b04d7a6-27e8-4278-a0d5-3839293ddeb8", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "facb9706-4c7d-4a4f-ad7e-d66b3b3770d6", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "85c4106a-21ac-4d7b-b70b-7bd340d89dd7", + "x-ms-routing-request-id": "WESTUS2:20221026T080529Z:facb9706-4c7d-4a4f-ad7e-d66b3b3770d6", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", - "name": "b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74", + "name": "895d8664-8031-4488-88e4-dd16565a9a74", "status": "InProgress", "startTime": null, "endTime": null, @@ -765,38 +752,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-92fd6053156c9640b5f66af3612a36aa-3972719bfe217b4b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ba71f4ddf31137ec27476b058f6fe2f8", + "traceparent": "00-914eba76cf3c60a3934ea9d8ca6b88ca-4004c161ee83dc6f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0e1b92fd4378b94dfdd517da014dcb9c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "ba71f4ddf31137ec27476b058f6fe2f8", + "client-request-id": "0e1b92fd4378b94dfdd517da014dcb9c", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 07:06:07 GMT", + "Date": "Wed, 26 Oct 2022 08:06:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a9e89caf-b92d-45bc-bed9-f0d2b32927f6", - "x-ms-ratelimit-remaining-subscription-reads": "11948", - "x-ms-request-id": "ce6fd553-43ed-45de-923e-ff6645cddeee", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T070608Z:a9e89caf-b92d-45bc-bed9-f0d2b32927f6", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "a8688578-313f-4222-af07-e77d01807061", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "22b7d720-9552-4fd4-9a86-6c2cd26cc728", + "x-ms-routing-request-id": "WESTUS2:20221026T080602Z:a8688578-313f-4222-af07-e77d01807061", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", - "name": "b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74", + "name": "895d8664-8031-4488-88e4-dd16565a9a74", "status": "InProgress", "startTime": null, "endTime": null, @@ -806,38 +793,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-92fd6053156c9640b5f66af3612a36aa-157c0b381ce28f44-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3f9f02782d54ba614a0c303423f468d8", + "traceparent": "00-914eba76cf3c60a3934ea9d8ca6b88ca-769bc684aa93faa4-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5cb8f491e47585942f636691c2a7dbf0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "3f9f02782d54ba614a0c303423f468d8", + "client-request-id": "5cb8f491e47585942f636691c2a7dbf0", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 07:06:41 GMT", + "Date": "Wed, 26 Oct 2022 08:06:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "48aa80b9-389b-45a0-8aaa-2d14e929f39c", - "x-ms-ratelimit-remaining-subscription-reads": "11947", - "x-ms-request-id": "9c4e01fa-79ea-4823-8fd7-1c00d6a5acf4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T070641Z:48aa80b9-389b-45a0-8aaa-2d14e929f39c", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "415260af-eee2-4a33-bbe0-2a3d8fcf3ab9", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "a5f27c54-0f7d-4a39-a838-5cf8be6b4cc9", + "x-ms-routing-request-id": "WESTUS2:20221026T080634Z:415260af-eee2-4a33-bbe0-2a3d8fcf3ab9", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", - "name": "b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74", + "name": "895d8664-8031-4488-88e4-dd16565a9a74", "status": "InProgress", "startTime": null, "endTime": null, @@ -847,38 +834,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-92fd6053156c9640b5f66af3612a36aa-ca08de36d9e67b4f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4687f80a728433ed851add3fc3a47610", + "traceparent": "00-914eba76cf3c60a3934ea9d8ca6b88ca-6637fb756e325d9c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e135bcf4b668048a94caeec962be0708", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "4687f80a728433ed851add3fc3a47610", + "client-request-id": "e135bcf4b668048a94caeec962be0708", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 07:07:13 GMT", + "Date": "Wed, 26 Oct 2022 08:07:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a8d67649-a8fb-4651-b6ef-ec46f03d2fbd", - "x-ms-ratelimit-remaining-subscription-reads": "11946", - "x-ms-request-id": "de30866e-d49a-4f28-ac94-7a3895e43b8e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T070713Z:a8d67649-a8fb-4651-b6ef-ec46f03d2fbd", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "4770ba28-17da-4308-8e0b-964d87c8d52e", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "9ad0d7d2-1b4f-440f-9971-deced99eb64b", + "x-ms-routing-request-id": "WESTUS2:20221026T080706Z:4770ba28-17da-4308-8e0b-964d87c8d52e", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", - "name": "b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74", + "name": "895d8664-8031-4488-88e4-dd16565a9a74", "status": "InProgress", "startTime": null, "endTime": null, @@ -888,38 +875,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-92fd6053156c9640b5f66af3612a36aa-2c543239a9479342-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "51042e5ab1b6b07b92b67004c3b71433", + "traceparent": "00-914eba76cf3c60a3934ea9d8ca6b88ca-8d94b5d71fe35f6e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3a56eac2b8391925fd95df15ddbcf656", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "51042e5ab1b6b07b92b67004c3b71433", + "client-request-id": "3a56eac2b8391925fd95df15ddbcf656", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 07:07:45 GMT", + "Date": "Wed, 26 Oct 2022 08:07:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5ca9af2d-3803-486f-9933-569c1aa6e27d", - "x-ms-ratelimit-remaining-subscription-reads": "11945", - "x-ms-request-id": "04a67a8d-c1bb-4e9e-9cf7-51378476a775", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T070745Z:5ca9af2d-3803-486f-9933-569c1aa6e27d", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "7aa02f02-9a27-43e0-b27f-8a8170027e0e", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "abe4b565-fd4d-4a35-8170-b1a136298d09", + "x-ms-routing-request-id": "WESTUS2:20221026T080738Z:7aa02f02-9a27-43e0-b27f-8a8170027e0e", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", - "name": "b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74", + "name": "895d8664-8031-4488-88e4-dd16565a9a74", "status": "InProgress", "startTime": null, "endTime": null, @@ -929,38 +916,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-92fd6053156c9640b5f66af3612a36aa-92a265b138e3be40-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "97fb92df9ce70574146cba394f21f6a5", + "traceparent": "00-914eba76cf3c60a3934ea9d8ca6b88ca-112d49f643fa3e24-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "45e527faea18da336ab4c7aaf5cb2370", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "97fb92df9ce70574146cba394f21f6a5", + "client-request-id": "45e527faea18da336ab4c7aaf5cb2370", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 07:08:18 GMT", + "Date": "Wed, 26 Oct 2022 08:08:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9301906d-5899-4c2c-8d15-6aa9da59b94c", - "x-ms-ratelimit-remaining-subscription-reads": "11944", - "x-ms-request-id": "82a7a3f2-6702-46e7-8f7d-8261e2ec18c5", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T070818Z:9301906d-5899-4c2c-8d15-6aa9da59b94c", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "cf924932-5e4c-4faf-accf-c8c1334de5ae", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "fc310a85-abc3-44d7-83af-b76885deffc9", + "x-ms-routing-request-id": "WESTUS2:20221026T080810Z:cf924932-5e4c-4faf-accf-c8c1334de5ae", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", - "name": "b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74", + "name": "895d8664-8031-4488-88e4-dd16565a9a74", "status": "InProgress", "startTime": null, "endTime": null, @@ -970,38 +957,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-92fd6053156c9640b5f66af3612a36aa-f2140021b86c5b4d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f4d9209616f059227dd7b3cd02e970cd", + "traceparent": "00-914eba76cf3c60a3934ea9d8ca6b88ca-ada04672f73ffecb-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d7cf5d5ba1503bb7961be4d3d77427d8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "f4d9209616f059227dd7b3cd02e970cd", + "client-request-id": "d7cf5d5ba1503bb7961be4d3d77427d8", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 07:08:51 GMT", + "Date": "Wed, 26 Oct 2022 08:08:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "08009915-0811-4ec8-a030-14542dca7b80", - "x-ms-ratelimit-remaining-subscription-reads": "11943", - "x-ms-request-id": "eb58d0a9-cb19-4a31-84c5-62e062a4c3f6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T070851Z:08009915-0811-4ec8-a030-14542dca7b80", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "56c073cf-2758-47e2-bf37-76b822933421", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "9362cf92-3cfa-4a9e-9ac0-6e5fcb8b4688", + "x-ms-routing-request-id": "WESTUS2:20221026T080842Z:56c073cf-2758-47e2-bf37-76b822933421", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", - "name": "b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74", + "name": "895d8664-8031-4488-88e4-dd16565a9a74", "status": "InProgress", "startTime": null, "endTime": null, @@ -1011,38 +998,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-92fd6053156c9640b5f66af3612a36aa-9219d5464a3d6b4d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3160aa05dea9be28bafe3d4af6416070", + "traceparent": "00-914eba76cf3c60a3934ea9d8ca6b88ca-ea8ae787394f10ea-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3bcf98d4c2d8d8f0b77ccf84f07b2332", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "3160aa05dea9be28bafe3d4af6416070", + "client-request-id": "3bcf98d4c2d8d8f0b77ccf84f07b2332", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 07:09:23 GMT", + "Date": "Wed, 26 Oct 2022 08:09:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3fe76c5f-ccea-4ca2-bd70-3e43242b6bf2", - "x-ms-ratelimit-remaining-subscription-reads": "11942", - "x-ms-request-id": "8f299386-57ba-458c-99a7-1f96cfc47d09", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T070923Z:3fe76c5f-ccea-4ca2-bd70-3e43242b6bf2", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "adcc2f67-6961-464e-9efa-bcefefdacbfc", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "36e1107d-bc66-4437-9f5b-b2d30ce5287f", + "x-ms-routing-request-id": "WESTUS2:20221026T080914Z:adcc2f67-6961-464e-9efa-bcefefdacbfc", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", - "name": "b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74", + "name": "895d8664-8031-4488-88e4-dd16565a9a74", "status": "InProgress", "startTime": null, "endTime": null, @@ -1052,38 +1039,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-92fd6053156c9640b5f66af3612a36aa-432b54ce8ec1a641-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a26dcbc020dec9426fa11a10e8a7032b", + "traceparent": "00-914eba76cf3c60a3934ea9d8ca6b88ca-a3f73985aa489e47-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7fba6e721fed59056fa9aefc055f02f5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "a26dcbc020dec9426fa11a10e8a7032b", + "client-request-id": "7fba6e721fed59056fa9aefc055f02f5", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 07:09:55 GMT", + "Date": "Wed, 26 Oct 2022 08:09:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d3d0cdca-4206-43fd-9c42-bc135cee7112", - "x-ms-ratelimit-remaining-subscription-reads": "11941", - "x-ms-request-id": "23195df5-b885-494e-9d77-9de9eed14d8b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T070955Z:d3d0cdca-4206-43fd-9c42-bc135cee7112", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "003367a2-8332-44a4-a73e-6c2f59f26319", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "a9d5d502-bcbe-4603-a52e-ee6f9f583a48", + "x-ms-routing-request-id": "WESTUS2:20221026T080947Z:003367a2-8332-44a4-a73e-6c2f59f26319", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", - "name": "b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74", + "name": "895d8664-8031-4488-88e4-dd16565a9a74", "status": "InProgress", "startTime": null, "endTime": null, @@ -1093,38 +1080,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-92fd6053156c9640b5f66af3612a36aa-edfb71c5bfc8fe4b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a534ecfbc5c1b8fbf71b3af2d9d8623b", + "traceparent": "00-914eba76cf3c60a3934ea9d8ca6b88ca-1ca98b98f1ebe974-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5dd6ef8de8fc98986df61fd4d1324b1b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "a534ecfbc5c1b8fbf71b3af2d9d8623b", + "client-request-id": "5dd6ef8de8fc98986df61fd4d1324b1b", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 07:10:28 GMT", + "Date": "Wed, 26 Oct 2022 08:10:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f7c68168-504a-46eb-9b09-18d33ff50bb7", - "x-ms-ratelimit-remaining-subscription-reads": "11940", - "x-ms-request-id": "c31a7e6a-bb36-4a61-b4e2-4ce03f03454e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T071028Z:f7c68168-504a-46eb-9b09-18d33ff50bb7", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "92caa07d-c70b-4c79-af3b-dfa5bd38a3b9", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "cccd0db3-24bd-4b4d-9928-282f224e79dd", + "x-ms-routing-request-id": "WESTUS2:20221026T081019Z:92caa07d-c70b-4c79-af3b-dfa5bd38a3b9", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", - "name": "b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74", + "name": "895d8664-8031-4488-88e4-dd16565a9a74", "status": "InProgress", "startTime": null, "endTime": null, @@ -1134,38 +1121,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-92fd6053156c9640b5f66af3612a36aa-9a7cd64f990e8d4e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "370d4276cd7be5ef6897c108c318d512", + "traceparent": "00-914eba76cf3c60a3934ea9d8ca6b88ca-90304c5a03411d65-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6961b1f8a7bab4ea9275cb2f14f4d257", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "370d4276cd7be5ef6897c108c318d512", + "client-request-id": "6961b1f8a7bab4ea9275cb2f14f4d257", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 07:11:00 GMT", + "Date": "Wed, 26 Oct 2022 08:10:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cd778dc2-587c-4892-adc6-aabde72878d5", - "x-ms-ratelimit-remaining-subscription-reads": "11939", - "x-ms-request-id": "2d05944b-d581-41bf-ad29-2e2b31d3026a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T071100Z:cd778dc2-587c-4892-adc6-aabde72878d5", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "29951b9f-8919-4fc5-87a4-14c276f00d97", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "5cbd75ff-728a-42d6-a566-008963a14450", + "x-ms-routing-request-id": "WESTUS2:20221026T081051Z:29951b9f-8919-4fc5-87a4-14c276f00d97", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", - "name": "b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74", + "name": "895d8664-8031-4488-88e4-dd16565a9a74", "status": "InProgress", "startTime": null, "endTime": null, @@ -1175,38 +1162,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-92fd6053156c9640b5f66af3612a36aa-b07ade4a78be214b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0a4e12fabb0dfaafcfb5abc3e54fef96", + "traceparent": "00-914eba76cf3c60a3934ea9d8ca6b88ca-23bbde3ce9b5dada-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "01f6da79c5a58a36d62112f6ff31883c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "0a4e12fabb0dfaafcfb5abc3e54fef96", + "client-request-id": "01f6da79c5a58a36d62112f6ff31883c", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 07:11:32 GMT", + "Date": "Wed, 26 Oct 2022 08:11:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1181a119-7e70-4a56-823b-88c8b680c81d", - "x-ms-ratelimit-remaining-subscription-reads": "11938", - "x-ms-request-id": "9bf675c4-c256-4566-b5dd-eb661d3a17ba", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T071132Z:1181a119-7e70-4a56-823b-88c8b680c81d", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "0ca5912d-e39e-4139-b43e-eca59915c927", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "9af8ef09-8065-4b75-a651-47218edd27bd", + "x-ms-routing-request-id": "WESTUS2:20221026T081123Z:0ca5912d-e39e-4139-b43e-eca59915c927", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", - "name": "b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74", + "name": "895d8664-8031-4488-88e4-dd16565a9a74", "status": "InProgress", "startTime": null, "endTime": null, @@ -1216,38 +1203,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-92fd6053156c9640b5f66af3612a36aa-ed6f98cceca0ce4f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a69ade3ecc992eaffd4e3c2a03f3f4de", + "traceparent": "00-914eba76cf3c60a3934ea9d8ca6b88ca-b99baef78f884b28-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5304925e99fee63a0521cb861c688478", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "a69ade3ecc992eaffd4e3c2a03f3f4de", + "client-request-id": "5304925e99fee63a0521cb861c688478", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 07:12:05 GMT", + "Date": "Wed, 26 Oct 2022 08:11:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "19dc4433-f1a8-4ac0-bb12-baebeab1b0cd", - "x-ms-ratelimit-remaining-subscription-reads": "11937", - "x-ms-request-id": "8c0ed7f5-5493-4621-a052-a82547487948", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T071205Z:19dc4433-f1a8-4ac0-bb12-baebeab1b0cd", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "e2dede7d-d83d-4367-9e15-563d5268dd59", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "6f28b62f-1257-4fe4-99f9-99009e6c121d", + "x-ms-routing-request-id": "WESTUS2:20221026T081155Z:e2dede7d-d83d-4367-9e15-563d5268dd59", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", - "name": "b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74", + "name": "895d8664-8031-4488-88e4-dd16565a9a74", "status": "InProgress", "startTime": null, "endTime": null, @@ -1257,38 +1244,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-92fd6053156c9640b5f66af3612a36aa-f6d1e3285594b041-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c7f72745588aba2e931267c6212cff18", + "traceparent": "00-914eba76cf3c60a3934ea9d8ca6b88ca-a81ef0e1c299a95f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f65ac724493c32767bd6939995f4b561", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "c7f72745588aba2e931267c6212cff18", + "client-request-id": "f65ac724493c32767bd6939995f4b561", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 07:12:36 GMT", + "Date": "Wed, 26 Oct 2022 08:12:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "012e32d4-339c-44a4-9436-f2710bf1f04c", - "x-ms-ratelimit-remaining-subscription-reads": "11936", - "x-ms-request-id": "d78f61d5-3cf8-45c3-a085-1d88a74fcc9e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T071237Z:012e32d4-339c-44a4-9436-f2710bf1f04c", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "fe69fee8-dd64-4d80-ad00-4780e6d4287e", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "056ad141-ca18-47de-b4ec-8e28d6ad30f5", + "x-ms-routing-request-id": "WESTUS2:20221026T081228Z:fe69fee8-dd64-4d80-ad00-4780e6d4287e", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", - "name": "b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74", + "name": "895d8664-8031-4488-88e4-dd16565a9a74", "status": "InProgress", "startTime": null, "endTime": null, @@ -1298,38 +1285,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-92fd6053156c9640b5f66af3612a36aa-cc6db13bc7370b47-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e5c92aa72f7e2e78621f0dbe7e84f6dc", + "traceparent": "00-914eba76cf3c60a3934ea9d8ca6b88ca-791004762ec50ab5-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "81d08eed7eefdf589f10fc83faaf6d6d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "e5c92aa72f7e2e78621f0dbe7e84f6dc", + "client-request-id": "81d08eed7eefdf589f10fc83faaf6d6d", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 07:13:09 GMT", + "Date": "Wed, 26 Oct 2022 08:13:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b6d90174-20a8-4dea-a1a7-c69d6fa49bb9", - "x-ms-ratelimit-remaining-subscription-reads": "11935", - "x-ms-request-id": "63f9f7e8-c873-4518-b42e-d675174cbdbc", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T071309Z:b6d90174-20a8-4dea-a1a7-c69d6fa49bb9", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "3e784a9c-1934-4d51-8938-bedd5c9ce75e", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "2a1e97f4-8adf-4b86-8220-6fc7a8d29447", + "x-ms-routing-request-id": "WESTUS2:20221026T081300Z:3e784a9c-1934-4d51-8938-bedd5c9ce75e", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", - "name": "b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74", + "name": "895d8664-8031-4488-88e4-dd16565a9a74", "status": "InProgress", "startTime": null, "endTime": null, @@ -1339,38 +1326,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-92fd6053156c9640b5f66af3612a36aa-12bb0fa60960a44a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "be7dccc02858e50cb0df138764e90dd0", + "traceparent": "00-914eba76cf3c60a3934ea9d8ca6b88ca-466aa7136b6218bb-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "37d1999c91d614001cd2d82806a15010", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "be7dccc02858e50cb0df138764e90dd0", + "client-request-id": "37d1999c91d614001cd2d82806a15010", "Content-Length": "353", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 07:13:42 GMT", + "Date": "Wed, 26 Oct 2022 08:13:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "118b61a9-a919-450a-aa62-f08a2cf6b679", - "x-ms-ratelimit-remaining-subscription-reads": "11934", - "x-ms-request-id": "01247b84-3c1d-4f61-a7a3-685ac543f300", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T071342Z:118b61a9-a919-450a-aa62-f08a2cf6b679", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "efb4f2a5-1f56-45ba-b292-4c7833a40260", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "886a5d82-0d11-4fdb-aeb5-d5dcf099ecc3", + "x-ms-routing-request-id": "WESTUS2:20221026T081332Z:efb4f2a5-1f56-45ba-b292-4c7833a40260", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", - "name": "b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74", + "name": "895d8664-8031-4488-88e4-dd16565a9a74", "status": "InProgress", "startTime": null, "endTime": null, @@ -1380,38 +1367,325 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East%20US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-92fd6053156c9640b5f66af3612a36aa-70ce5fa0e669cd40-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d883244f0f291660aec9646b4b703b0e", + "traceparent": "00-914eba76cf3c60a3934ea9d8ca6b88ca-9db3f2152d7db0f8-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "8e98696b0398a6886e7a572b4df237cb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3?api-version=2021-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", "Cache-Control": "no-cache", - "client-request-id": "d883244f0f291660aec9646b4b703b0e", + "client-request-id": "8e98696b0398a6886e7a572b4df237cb", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 08:14:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3d6ca3bd-21da-4fd4-932d-eedd2c62be9e", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "3e0dd843-5035-48cc-9daf-31db7f948913", + "x-ms-routing-request-id": "WESTUS2:20221026T081404Z:3d6ca3bd-21da-4fd4-932d-eedd2c62be9e", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74", + "name": "895d8664-8031-4488-88e4-dd16565a9a74", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-914eba76cf3c60a3934ea9d8ca6b88ca-042203abf75ac2b7-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "fbfd25697d225c8b8dbb641da530d9fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "fbfd25697d225c8b8dbb641da530d9fe", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 08:14:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c345a257-24d4-46cf-a0c6-21ea4e2e39cb", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "758596ea-209b-4245-a8b7-1e16550c9034", + "x-ms-routing-request-id": "WESTUS2:20221026T081436Z:c345a257-24d4-46cf-a0c6-21ea4e2e39cb", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74", + "name": "895d8664-8031-4488-88e4-dd16565a9a74", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-914eba76cf3c60a3934ea9d8ca6b88ca-e1537e0bda847066-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "9118ebbfdf1698d4102ac85b39d5c72a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "9118ebbfdf1698d4102ac85b39d5c72a", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 08:15:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "afe0dd15-5cfc-4c71-bb3b-8726476c7d7a", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "96ab5473-e59e-4f05-acc3-dd76ea18f651", + "x-ms-routing-request-id": "WESTUS2:20221026T081508Z:afe0dd15-5cfc-4c71-bb3b-8726476c7d7a", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74", + "name": "895d8664-8031-4488-88e4-dd16565a9a74", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-914eba76cf3c60a3934ea9d8ca6b88ca-d11dc3e96cfea40d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e0be0c9a54a3eeeede3c00dc9f6b003d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "e0be0c9a54a3eeeede3c00dc9f6b003d", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 08:15:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "bfd97721-0cdf-4f32-846a-1bb550c432ec", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "4bad3a90-eaaf-4072-b773-73d76ac41085", + "x-ms-routing-request-id": "WESTUS2:20221026T081540Z:bfd97721-0cdf-4f32-846a-1bb550c432ec", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74", + "name": "895d8664-8031-4488-88e4-dd16565a9a74", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-914eba76cf3c60a3934ea9d8ca6b88ca-645c336210a62194-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "626b59a1a6da8ab45164ebf7b42f22b8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "626b59a1a6da8ab45164ebf7b42f22b8", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 08:16:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8040c4c3-a523-4895-b00a-023bed540d1c", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "c6584cd7-2555-4fbd-9476-36463b67906d", + "x-ms-routing-request-id": "WESTUS2:20221026T081612Z:8040c4c3-a523-4895-b00a-023bed540d1c", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74", + "name": "895d8664-8031-4488-88e4-dd16565a9a74", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-914eba76cf3c60a3934ea9d8ca6b88ca-4113d33fed34b79e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "99823af4f8726a5afd29b2dadef8f9a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "99823af4f8726a5afd29b2dadef8f9a5", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 08:16:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "50a559f4-f3d2-4241-824f-75815c4e08b2", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "7f207368-331d-412e-beae-745c28fbf9b4", + "x-ms-routing-request-id": "WESTUS2:20221026T081644Z:50a559f4-f3d2-4241-824f-75815c4e08b2", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74", + "name": "895d8664-8031-4488-88e4-dd16565a9a74", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-914eba76cf3c60a3934ea9d8ca6b88ca-8c2cdc4eb48edb02-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e0b98a296469f45057348f3f69f639ae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "e0b98a296469f45057348f3f69f639ae", + "Content-Length": "353", + "Content-Type": "application/json", + "Date": "Wed, 26 Oct 2022 08:17:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "fba0401c-6ba3-4be6-9b15-ef823fec9239", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "f8f5942c-e21c-4e14-a3cb-9c442c461acf", + "x-ms-routing-request-id": "WESTUS2:20221026T081717Z:fba0401c-6ba3-4be6-9b15-ef823fec9239", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" + }, + "ResponseBody": { + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74", + "name": "895d8664-8031-4488-88e4-dd16565a9a74", + "status": "InProgress", + "startTime": null, + "endTime": null, + "percentComplete": null, + "properties": null, + "error": null + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-914eba76cf3c60a3934ea9d8ca6b88ca-486cd438a933b9d7-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "64e7481a67e8a8cbfe0064b0f3daac58", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74?api-version=2022-06-01", + "Cache-Control": "no-cache", + "client-request-id": "64e7481a67e8a8cbfe0064b0f3daac58", "Content-Length": "352", "Content-Type": "application/json", - "Date": "Fri, 26 Aug 2022 07:14:14 GMT", + "Date": "Wed, 26 Oct 2022 08:17:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ac671a93-65f7-44ac-bafb-5beddeddb368", - "x-ms-ratelimit-remaining-subscription-reads": "11933", - "x-ms-request-id": "92ee1864-f974-4bb5-aedc-44c77a3fcf33", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T071414Z:ac671a93-65f7-44ac-bafb-5beddeddb368", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "cec99d8f-5674-45b2-bb79-8ac2129a523a", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "b94fdc40-a39a-47e3-93e6-3a98e2d7c446", + "x-ms-routing-request-id": "WESTUS2:20221026T081749Z:cec99d8f-5674-45b2-bb79-8ac2129a523a", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Cache/locations/East US/asyncOperations/b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", - "name": "b2820bb1-a5b6-47b3-9cdb-fe2cbd13a9e3", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/895d8664-8031-4488-88e4-dd16565a9a74", + "name": "895d8664-8031-4488-88e4-dd16565a9a74", "status": "Succeeded", "startTime": null, "endTime": null, @@ -1421,43 +1695,43 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-5714/providers/Microsoft.Cache/redis/RedisSchedules4247?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-1047/providers/Microsoft.Cache/redis/RedisSchedules6027?api-version=2022-06-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-92fd6053156c9640b5f66af3612a36aa-699236704949cf46-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "54058a1b40ae7ec01ee3359e1cf1c979", + "traceparent": "00-914eba76cf3c60a3934ea9d8ca6b88ca-0ac5fc8edcee475b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "29cd456a4176904eea8e423d691a0107", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "54058a1b40ae7ec01ee3359e1cf1c979", - "Content-Length": "779", + "client-request-id": "29cd456a4176904eea8e423d691a0107", + "Content-Length": "776", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 07:14:14 GMT", + "Date": "Wed, 26 Oct 2022 08:17:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "545ab7bd-ba6b-4559-8449-c5ef0fdb87c2", - "x-ms-ratelimit-remaining-subscription-reads": "11932", - "x-ms-request-id": "0b389b23-72a1-46b4-b2a1-1cec19e1db4c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T071415Z:545ab7bd-ba6b-4559-8449-c5ef0fdb87c2", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "3d4b299b-02da-4d3e-827d-ad74705d3adc", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "1714279a-8257-4d55-b9a9-2fd61fd532b6", + "x-ms-routing-request-id": "WESTUS2:20221026T081749Z:3d4b299b-02da-4d3e-827d-ad74705d3adc", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-5714/providers/Microsoft.Cache/Redis/RedisSchedules4247", + "id": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-1047/providers/Microsoft.Cache/Redis/RedisSchedules6027", "location": "East US", - "name": "RedisSchedules4247", + "name": "RedisSchedules6027", "type": "Microsoft.Cache/Redis", "tags": {}, "properties": { "provisioningState": "Succeeded", - "redisVersion": "4.0.14", + "redisVersion": "6.0", "sku": { "name": "Premium", "family": "P", @@ -1484,7 +1758,7 @@ "maxmemory-delta": "642" }, "accessKeys": null, - "hostName": "RedisSchedules4247.redis.cache.windows.net", + "hostName": "RedisSchedules6027.redis.cache.windows.net", "port": 6379, "sslPort": 6380, "linkedServers": [] @@ -1492,16 +1766,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-5714/providers/Microsoft.Cache/redis/RedisSchedules4247/forceReboot?api-version=2021-06-01", + "RequestUri": "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/testRG-1047/providers/Microsoft.Cache/redis/RedisSchedules6027/forceReboot?api-version=2022-06-01", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "25", "Content-Type": "application/json", - "traceparent": "00-127c31253950e0428505218825068366-685f53037658c941-00", - "User-Agent": "azsdk-net-ResourceManager.Redis/1.0.0-alpha.20220826.1 (.NET Core 3.1.28; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5a6e3c111e01b1b36c670f8ec4a19a3f", + "traceparent": "00-e5091173846602aac170a2d801ac5744-883a67aafc0161f5-00", + "User-Agent": "azsdk-net-ResourceManager.Redis/1.1.0-alpha.20221025.1 (.NET 6.0.10; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "95bf04f09410c2bdbf10e268ff9f017c", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -1510,20 +1784,20 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "5a6e3c111e01b1b36c670f8ec4a19a3f", + "client-request-id": "95bf04f09410c2bdbf10e268ff9f017c", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Aug 2022 07:14:17 GMT", + "Date": "Wed, 26 Oct 2022 08:17:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fa103a1e-498a-4ac2-96d4-fb3de41895b1", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "5781196c-01fe-41aa-a4ac-b9ddc5cd2b51", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220826T071418Z:fa103a1e-498a-4ac2-96d4-fb3de41895b1", - "x-rp-server-mvid": "c303d539-9746-4223-858f-ffadcb128e7d" + "x-ms-correlation-request-id": "cc2f8b1e-fa36-45a8-865c-3f1ec9c6c569", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "ab0d84da-2a53-4d56-a6ab-4421993b3c36", + "x-ms-routing-request-id": "WESTUS2:20221026T081750Z:cc2f8b1e-fa36-45a8-865c-3f1ec9c6c569", + "x-rp-server-mvid": "e50c5eff-b9c2-4a62-99a8-4bf3098f7da5" }, "ResponseBody": { "message": "The requested reboot operation for \u0027Value\u0027 has been successfully scheduled and should be executed shortly." @@ -1532,8 +1806,8 @@ ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1799544412", + "RandomSeed": "737040569", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + "SUBSCRIPTION_ID": "3919658b-68ae-4509-8c17-6a2238340ae7" } }