diff --git a/eng/mgmt/mgmtmetadata/redis_resource-manager.txt b/eng/mgmt/mgmtmetadata/redis_resource-manager.txt index c526e5384e1a..4d72e07d3bbc 100644 --- a/eng/mgmt/mgmtmetadata/redis_resource-manager.txt +++ b/eng/mgmt/mgmtmetadata/redis_resource-manager.txt @@ -3,13 +3,13 @@ AutoRest installed successfully. Commencing code generation Generating CSharp code Executing AutoRest command -cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/main/specification/redis/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=C:\azure-sdk-for-net\sdk +cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/main/specification/redis/resource-manager/readme.md --csharp --version=2.0.4421 --reflect-api-versions --csharp-sdks-folder=C:\Users\austintolani\Repos\azure-sdk-for-net\sdk Autorest CSharp Version: 2.3.82 -2021-12-15 11:49:06 UTC +2022-10-13 18:20:10 UTC Azure-rest-api-specs repository information GitHub fork: Azure Branch: main -Commit: 58891380ba22c3565ca884dee3831445f638b545 +Commit: 2ecbe51762643c7f6b6c6d8dd604dd934a1cc808 AutoRest information -Requested version: v2 -Bootstrapper version: autorest@3.3.2 +Requested version: 2.0.4421 +Bootstrapper version: autorest@2.0.4413 diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/AzSdk.RP.props b/sdk/redis/Microsoft.Azure.Management.Redis/AzSdk.RP.props index ec9e7958b5cf..48f9f1284449 100644 --- a/sdk/redis/Microsoft.Azure.Management.Redis/AzSdk.RP.props +++ b/sdk/redis/Microsoft.Azure.Management.Redis/AzSdk.RP.props @@ -1,7 +1,7 @@ - Cache_2021-06-01; + Cache_2022-06-01; $(PackageTags);$(CommonTags);$(AzureApiTag); \ No newline at end of file diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/AsyncOperationStatusOperations.cs b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/AsyncOperationStatusOperations.cs new file mode 100644 index 000000000000..1b0580773fc7 --- /dev/null +++ b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/AsyncOperationStatusOperations.cs @@ -0,0 +1,245 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Redis +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// AsyncOperationStatusOperations operations. + /// + internal partial class AsyncOperationStatusOperations : IServiceOperations, IAsyncOperationStatusOperations + { + /// + /// Initializes a new instance of the AsyncOperationStatusOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal AsyncOperationStatusOperations(RedisManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the RedisManagementClient + /// + public RedisManagementClient Client { get; private set; } + + /// + /// For checking the ongoing status of an operation + /// + /// + /// The location at which operation was triggered + /// + /// + /// The ID of asynchronous operation + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string location, string operationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "location"); + } + if (operationId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "operationId"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("location", location); + tracingParameters.Add("operationId", operationId); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Cache/locations/{location}/asyncOperations/{operationId}").ToString(); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); + _url = _url.Replace("{operationId}", System.Uri.EscapeDataString(operationId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/AsyncOperationStatusOperationsExtensions.cs b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/AsyncOperationStatusOperationsExtensions.cs new file mode 100644 index 000000000000..8eb64394d55f --- /dev/null +++ b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/AsyncOperationStatusOperationsExtensions.cs @@ -0,0 +1,65 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Redis +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for AsyncOperationStatusOperations. + /// + public static partial class AsyncOperationStatusOperationsExtensions + { + /// + /// For checking the ongoing status of an operation + /// + /// + /// The operations group for this extension method. + /// + /// + /// The location at which operation was triggered + /// + /// + /// The ID of asynchronous operation + /// + public static OperationStatus Get(this IAsyncOperationStatusOperations operations, string location, string operationId) + { + return operations.GetAsync(location, operationId).GetAwaiter().GetResult(); + } + + /// + /// For checking the ongoing status of an operation + /// + /// + /// The operations group for this extension method. + /// + /// + /// The location at which operation was triggered + /// + /// + /// The ID of asynchronous operation + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IAsyncOperationStatusOperations operations, string location, string operationId, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(location, operationId, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/IAsyncOperationStatusOperations.cs b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/IAsyncOperationStatusOperations.cs new file mode 100644 index 000000000000..51e9358c43d9 --- /dev/null +++ b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/IAsyncOperationStatusOperations.cs @@ -0,0 +1,52 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Redis +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// AsyncOperationStatusOperations operations. + /// + public partial interface IAsyncOperationStatusOperations + { + /// + /// For checking the ongoing status of an operation + /// + /// + /// The location at which operation was triggered + /// + /// + /// The ID of asynchronous operation + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string location, string operationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/ILinkedServerOperations.cs b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/ILinkedServerOperations.cs index 3b542dab3611..308dae93bf5b 100644 --- a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/ILinkedServerOperations.cs +++ b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/ILinkedServerOperations.cs @@ -170,6 +170,33 @@ public partial interface ILinkedServerOperations /// Task> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string name, string linkedServerName, RedisLinkedServerCreateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Deletes the linked server from a redis cache (requires Premium + /// SKU). + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the redis cache. + /// + /// + /// The name of the linked server that is being added to the Redis + /// cache. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string name, string linkedServerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Gets the list of linked servers associated with this redis cache /// (requires Premium SKU). /// diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/IRedisManagementClient.cs b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/IRedisManagementClient.cs index 46cc3f89e0ff..152295a63661 100644 --- a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/IRedisManagementClient.cs +++ b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/IRedisManagementClient.cs @@ -106,5 +106,10 @@ public partial interface IRedisManagementClient : System.IDisposable /// IPrivateLinkResourcesOperations PrivateLinkResources { get; } + /// + /// Gets the IAsyncOperationStatusOperations. + /// + IAsyncOperationStatusOperations AsyncOperationStatus { get; } + } } diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/IRedisOperations.cs b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/IRedisOperations.cs index 467292283242..c467300f869a 100644 --- a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/IRedisOperations.cs +++ b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/IRedisOperations.cs @@ -381,6 +381,34 @@ public partial interface IRedisOperations /// Task> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string name, RedisCreateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Update an existing Redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Parameters supplied to the Update Redis operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string name, RedisUpdateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Deletes a Redis cache. /// /// diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/LinkedServerOperations.cs b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/LinkedServerOperations.cs index 6877fd223c21..bfc1d44873d8 100644 --- a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/LinkedServerOperations.cs +++ b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/LinkedServerOperations.cs @@ -91,6 +91,32 @@ internal LinkedServerOperations(RedisManagementClient client) /// The name of the linked server that is being added to the Redis cache. /// /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string name, string linkedServerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, name, linkedServerName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets the detailed information about a linked server of a redis cache + /// (requires Premium SKU). + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the redis cache. + /// + /// + /// The name of the linked server. + /// + /// /// Headers that will be added to request. /// /// @@ -99,6 +125,9 @@ internal LinkedServerOperations(RedisManagementClient client) /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// @@ -108,7 +137,7 @@ internal LinkedServerOperations(RedisManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string name, string linkedServerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string name, string linkedServerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -141,7 +170,7 @@ internal LinkedServerOperations(RedisManagementClient client) tracingParameters.Add("name", name); tracingParameters.Add("linkedServerName", linkedServerName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; @@ -162,7 +191,7 @@ internal LinkedServerOperations(RedisManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -213,7 +242,7 @@ internal LinkedServerOperations(RedisManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 204) + if ((int)_statusCode != 200) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -243,13 +272,31 @@ internal LinkedServerOperations(RedisManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -258,8 +305,8 @@ internal LinkedServerOperations(RedisManagementClient client) } /// - /// Gets the detailed information about a linked server of a redis cache - /// (requires Premium SKU). + /// Gets the list of linked servers associated with this redis cache (requires + /// Premium SKU). /// /// /// The name of the resource group. @@ -267,9 +314,6 @@ internal LinkedServerOperations(RedisManagementClient client) /// /// The name of the redis cache. /// - /// - /// The name of the linked server. - /// /// /// Headers that will be added to request. /// @@ -291,7 +335,7 @@ internal LinkedServerOperations(RedisManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string name, string linkedServerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -301,10 +345,6 @@ internal LinkedServerOperations(RedisManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); } - if (linkedServerName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "linkedServerName"); - } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); @@ -322,16 +362,14 @@ internal LinkedServerOperations(RedisManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("name", name); - tracingParameters.Add("linkedServerName", linkedServerName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{name}/linkedServers/{linkedServerName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{name}/linkedServers").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); - _url = _url.Replace("{linkedServerName}", System.Uri.EscapeDataString(linkedServerName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) @@ -426,7 +464,7 @@ internal LinkedServerOperations(RedisManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -439,7 +477,7 @@ internal LinkedServerOperations(RedisManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -459,14 +497,19 @@ internal LinkedServerOperations(RedisManagementClient client) } /// - /// Gets the list of linked servers associated with this redis cache (requires - /// Premium SKU). + /// Adds a linked server to the Redis cache (requires Premium SKU). /// /// /// The name of the resource group. /// /// - /// The name of the redis cache. + /// The name of the Redis cache. + /// + /// + /// The name of the linked server that is being added to the Redis cache. + /// + /// + /// Parameters supplied to the Create Linked server operation. /// /// /// Headers that will be added to request. @@ -489,7 +532,7 @@ internal LinkedServerOperations(RedisManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string name, string linkedServerName, RedisLinkedServerCreateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -499,6 +542,18 @@ internal LinkedServerOperations(RedisManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); } + if (linkedServerName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "linkedServerName"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); @@ -516,14 +571,17 @@ internal LinkedServerOperations(RedisManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("name", name); + tracingParameters.Add("linkedServerName", linkedServerName); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginCreate", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{name}/linkedServers").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{name}/linkedServers/{linkedServerName}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); + _url = _url.Replace("{linkedServerName}", System.Uri.EscapeDataString(linkedServerName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) @@ -537,7 +595,7 @@ internal LinkedServerOperations(RedisManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -568,6 +626,12 @@ internal LinkedServerOperations(RedisManagementClient client) // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { @@ -588,7 +652,7 @@ internal LinkedServerOperations(RedisManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 201) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -618,7 +682,7 @@ internal LinkedServerOperations(RedisManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -631,7 +695,25 @@ internal LinkedServerOperations(RedisManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -651,20 +733,17 @@ internal LinkedServerOperations(RedisManagementClient client) } /// - /// Adds a linked server to the Redis cache (requires Premium SKU). + /// Deletes the linked server from a redis cache (requires Premium SKU). /// /// /// The name of the resource group. /// /// - /// The name of the Redis cache. + /// The name of the redis cache. /// /// /// The name of the linked server that is being added to the Redis cache. /// - /// - /// Parameters supplied to the Create Linked server operation. - /// /// /// Headers that will be added to request. /// @@ -674,9 +753,6 @@ internal LinkedServerOperations(RedisManagementClient client) /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// @@ -686,7 +762,7 @@ internal LinkedServerOperations(RedisManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string name, string linkedServerName, RedisLinkedServerCreateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string name, string linkedServerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -700,14 +776,6 @@ internal LinkedServerOperations(RedisManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "linkedServerName"); } - if (parameters == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); - } - if (parameters != null) - { - parameters.Validate(); - } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); @@ -726,9 +794,8 @@ internal LinkedServerOperations(RedisManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("name", name); tracingParameters.Add("linkedServerName", linkedServerName); - tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginCreate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; @@ -749,7 +816,7 @@ internal LinkedServerOperations(RedisManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.Method = new HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -780,12 +847,6 @@ internal LinkedServerOperations(RedisManagementClient client) // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Client.Credentials != null) { @@ -806,7 +867,7 @@ internal LinkedServerOperations(RedisManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 201) + if ((int)_statusCode != 200 && (int)_statusCode != 202) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -836,49 +897,13 @@ internal LinkedServerOperations(RedisManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - // Deserialize Response - if ((int)_statusCode == 201) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/LinkedServerOperationsExtensions.cs b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/LinkedServerOperationsExtensions.cs index 50b30f2645a1..42b5b7796eda 100644 --- a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/LinkedServerOperationsExtensions.cs +++ b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/LinkedServerOperationsExtensions.cs @@ -258,6 +258,49 @@ public static RedisLinkedServerWithProperties BeginCreate(this ILinkedServerOper } } + /// + /// Deletes the linked server from a redis cache (requires Premium SKU). + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the redis cache. + /// + /// + /// The name of the linked server that is being added to the Redis cache. + /// + public static void BeginDelete(this ILinkedServerOperations operations, string resourceGroupName, string name, string linkedServerName) + { + operations.BeginDeleteAsync(resourceGroupName, name, linkedServerName).GetAwaiter().GetResult(); + } + + /// + /// Deletes the linked server from a redis cache (requires Premium SKU). + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the redis cache. + /// + /// + /// The name of the linked server that is being added to the Redis cache. + /// + /// + /// The cancellation token. + /// + public static async Task BeginDeleteAsync(this ILinkedServerOperations operations, string resourceGroupName, string name, string linkedServerName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, name, linkedServerName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// /// Gets the list of linked servers associated with this redis cache (requires /// Premium SKU). diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/Models/ExportRDBParameters.cs b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/Models/ExportRDBParameters.cs index a2f214e8bd2b..aaeee29800fc 100644 --- a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/Models/ExportRDBParameters.cs +++ b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/Models/ExportRDBParameters.cs @@ -33,11 +33,15 @@ public ExportRDBParameters() /// Prefix to use for exported files. /// Container name to export to. /// File format. - public ExportRDBParameters(string prefix, string container, string format = default(string)) + /// Preferred auth method + /// to communicate to storage account used for data archive, specify + /// SAS or ManagedIdentity, default value is SAS + public ExportRDBParameters(string prefix, string container, string format = default(string), string preferredDataArchiveAuthMethod = default(string)) { Format = format; Prefix = prefix; Container = container; + PreferredDataArchiveAuthMethod = preferredDataArchiveAuthMethod; CustomInit(); } @@ -64,6 +68,14 @@ public ExportRDBParameters() [JsonProperty(PropertyName = "container")] public string Container { get; set; } + /// + /// Gets or sets preferred auth method to communicate to storage + /// account used for data archive, specify SAS or ManagedIdentity, + /// default value is SAS + /// + [JsonProperty(PropertyName = "preferred-data-archive-auth-method")] + public string PreferredDataArchiveAuthMethod { get; set; } + /// /// Validate the object. /// diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/Models/ImportRDBParameters.cs b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/Models/ImportRDBParameters.cs index baa1ca5d0453..8d58dfbb06d0 100644 --- a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/Models/ImportRDBParameters.cs +++ b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/Models/ImportRDBParameters.cs @@ -34,10 +34,14 @@ public ImportRDBParameters() /// /// files to import. /// File format. - public ImportRDBParameters(IList files, string format = default(string)) + /// Preferred auth method + /// to communicate to storage account used for data archive, specify + /// SAS or ManagedIdentity, default value is SAS + public ImportRDBParameters(IList files, string format = default(string), string preferredDataArchiveAuthMethod = default(string)) { Format = format; Files = files; + PreferredDataArchiveAuthMethod = preferredDataArchiveAuthMethod; CustomInit(); } @@ -58,6 +62,14 @@ public ImportRDBParameters() [JsonProperty(PropertyName = "files")] public IList Files { get; set; } + /// + /// Gets or sets preferred auth method to communicate to storage + /// account used for data archive, specify SAS or ManagedIdentity, + /// default value is SAS + /// + [JsonProperty(PropertyName = "preferred-data-archive-auth-method")] + public string PreferredDataArchiveAuthMethod { get; set; } + /// /// Validate the object. /// diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/Models/OperationStatus.cs b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/Models/OperationStatus.cs new file mode 100644 index 000000000000..1f5e2df6abb0 --- /dev/null +++ b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/Models/OperationStatus.cs @@ -0,0 +1,77 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Redis.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Asynchronous operation status + /// + public partial class OperationStatus : OperationStatusResult + { + /// + /// Initializes a new instance of the OperationStatus class. + /// + public OperationStatus() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the OperationStatus class. + /// + /// Operation status. + /// Fully qualified ID for the async + /// operation. + /// Name of the async operation. + /// Percent of the operation that is + /// complete. + /// The start time of the operation. + /// The end time of the operation. + /// The operations list. + /// If present, details of the operation + /// error. + /// Additional properties from RP, only when + /// operation is successful + public OperationStatus(string status, string id = default(string), string name = default(string), double? percentComplete = default(double?), System.DateTime? startTime = default(System.DateTime?), System.DateTime? endTime = default(System.DateTime?), IList operations = default(IList), ErrorDetail error = default(ErrorDetail), IDictionary properties = default(IDictionary)) + : base(status, id, name, percentComplete, startTime, endTime, operations, error) + { + Properties = properties; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets additional properties from RP, only when operation is + /// successful + /// + [JsonProperty(PropertyName = "properties")] + public IDictionary Properties { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + } + } +} diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/Models/OperationStatusResult.cs b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/Models/OperationStatusResult.cs new file mode 100644 index 000000000000..884aa059a3ff --- /dev/null +++ b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/Models/OperationStatusResult.cs @@ -0,0 +1,144 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Redis.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// The current status of an async operation. + /// + public partial class OperationStatusResult + { + /// + /// Initializes a new instance of the OperationStatusResult class. + /// + public OperationStatusResult() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the OperationStatusResult class. + /// + /// Operation status. + /// Fully qualified ID for the async + /// operation. + /// Name of the async operation. + /// Percent of the operation that is + /// complete. + /// The start time of the operation. + /// The end time of the operation. + /// The operations list. + /// If present, details of the operation + /// error. + public OperationStatusResult(string status, string id = default(string), string name = default(string), double? percentComplete = default(double?), System.DateTime? startTime = default(System.DateTime?), System.DateTime? endTime = default(System.DateTime?), IList operations = default(IList), ErrorDetail error = default(ErrorDetail)) + { + Id = id; + Name = name; + Status = status; + PercentComplete = percentComplete; + StartTime = startTime; + EndTime = endTime; + Operations = operations; + Error = error; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets fully qualified ID for the async operation. + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; set; } + + /// + /// Gets or sets name of the async operation. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets operation status. + /// + [JsonProperty(PropertyName = "status")] + public string Status { get; set; } + + /// + /// Gets or sets percent of the operation that is complete. + /// + [JsonProperty(PropertyName = "percentComplete")] + public double? PercentComplete { get; set; } + + /// + /// Gets or sets the start time of the operation. + /// + [JsonProperty(PropertyName = "startTime")] + public System.DateTime? StartTime { get; set; } + + /// + /// Gets or sets the end time of the operation. + /// + [JsonProperty(PropertyName = "endTime")] + public System.DateTime? EndTime { get; set; } + + /// + /// Gets or sets the operations list. + /// + [JsonProperty(PropertyName = "operations")] + public IList Operations { get; set; } + + /// + /// Gets or sets if present, details of the operation error. + /// + [JsonProperty(PropertyName = "error")] + public ErrorDetail Error { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Status == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Status"); + } + if (PercentComplete > 100) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "PercentComplete", 100); + } + if (PercentComplete < 0) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "PercentComplete", 0); + } + if (Operations != null) + { + foreach (var element in Operations) + { + if (element != null) + { + element.Validate(); + } + } + } + } + } +} diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/Models/RedisCommonPropertiesRedisConfiguration.cs b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/Models/RedisCommonPropertiesRedisConfiguration.cs index 0dddb6872b2c..3b266663ffc9 100644 --- a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/Models/RedisCommonPropertiesRedisConfiguration.cs +++ b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/Models/RedisCommonPropertiesRedisConfiguration.cs @@ -40,11 +40,14 @@ public RedisCommonPropertiesRedisConfiguration() /// Specifies whether the rdb backup is /// enabled /// Specifies the frequency for - /// creating rdb backup + /// creating rdb backup in minutes. Valid values: (15, 30, 60, 360, + /// 720, 1440) /// Specifies the maximum /// number of snapshots for rdb backup /// The storage account /// connection string for storing rdb file + /// Specifies whether the aof backup is + /// enabled /// First storage account /// connection string /// Second storage account @@ -64,13 +67,18 @@ public RedisCommonPropertiesRedisConfiguration() /// Preferred auth /// method to communicate to storage account used for data persistence, /// specify SAS or ManagedIdentity, default value is SAS - public RedisCommonPropertiesRedisConfiguration(IDictionary additionalProperties = default(IDictionary), string rdbBackupEnabled = default(string), string rdbBackupFrequency = default(string), string rdbBackupMaxSnapshotCount = default(string), string rdbStorageConnectionString = default(string), string aofStorageConnectionString0 = default(string), string aofStorageConnectionString1 = default(string), string maxfragmentationmemoryReserved = default(string), string maxmemoryPolicy = default(string), string maxmemoryReserved = default(string), string maxmemoryDelta = default(string), string maxclients = default(string), string preferredDataArchiveAuthMethod = default(string), string preferredDataPersistenceAuthMethod = default(string)) + /// Zonal Configuration + /// Specifies whether the authentication + /// is disabled. Setting this property is highly discouraged from + /// security point of view. + public RedisCommonPropertiesRedisConfiguration(IDictionary additionalProperties = default(IDictionary), string rdbBackupEnabled = default(string), string rdbBackupFrequency = default(string), string rdbBackupMaxSnapshotCount = default(string), string rdbStorageConnectionString = default(string), string aofBackupEnabled = default(string), string aofStorageConnectionString0 = default(string), string aofStorageConnectionString1 = default(string), string maxfragmentationmemoryReserved = default(string), string maxmemoryPolicy = default(string), string maxmemoryReserved = default(string), string maxmemoryDelta = default(string), string maxclients = default(string), string preferredDataArchiveAuthMethod = default(string), string preferredDataPersistenceAuthMethod = default(string), string zonalConfiguration = default(string), string authnotrequired = default(string)) { AdditionalProperties = additionalProperties; RdbBackupEnabled = rdbBackupEnabled; RdbBackupFrequency = rdbBackupFrequency; RdbBackupMaxSnapshotCount = rdbBackupMaxSnapshotCount; RdbStorageConnectionString = rdbStorageConnectionString; + AofBackupEnabled = aofBackupEnabled; AofStorageConnectionString0 = aofStorageConnectionString0; AofStorageConnectionString1 = aofStorageConnectionString1; MaxfragmentationmemoryReserved = maxfragmentationmemoryReserved; @@ -80,6 +88,8 @@ public RedisCommonPropertiesRedisConfiguration() Maxclients = maxclients; PreferredDataArchiveAuthMethod = preferredDataArchiveAuthMethod; PreferredDataPersistenceAuthMethod = preferredDataPersistenceAuthMethod; + ZonalConfiguration = zonalConfiguration; + Authnotrequired = authnotrequired; CustomInit(); } @@ -102,7 +112,8 @@ public RedisCommonPropertiesRedisConfiguration() public string RdbBackupEnabled { get; set; } /// - /// Gets or sets specifies the frequency for creating rdb backup + /// Gets or sets specifies the frequency for creating rdb backup in + /// minutes. Valid values: (15, 30, 60, 360, 720, 1440) /// [JsonProperty(PropertyName = "rdb-backup-frequency")] public string RdbBackupFrequency { get; set; } @@ -121,6 +132,12 @@ public RedisCommonPropertiesRedisConfiguration() [JsonProperty(PropertyName = "rdb-storage-connection-string")] public string RdbStorageConnectionString { get; set; } + /// + /// Gets or sets specifies whether the aof backup is enabled + /// + [JsonProperty(PropertyName = "aof-backup-enabled")] + public string AofBackupEnabled { get; set; } + /// /// Gets or sets first storage account connection string /// @@ -176,12 +193,26 @@ public RedisCommonPropertiesRedisConfiguration() public string PreferredDataArchiveAuthMethod { get; private set; } /// - /// Gets preferred auth method to communicate to storage account used - /// for data persistence, specify SAS or ManagedIdentity, default value - /// is SAS + /// Gets or sets preferred auth method to communicate to storage + /// account used for data persistence, specify SAS or ManagedIdentity, + /// default value is SAS /// [JsonProperty(PropertyName = "preferred-data-persistence-auth-method")] - public string PreferredDataPersistenceAuthMethod { get; private set; } + public string PreferredDataPersistenceAuthMethod { get; set; } + + /// + /// Gets zonal Configuration + /// + [JsonProperty(PropertyName = "zonal-configuration")] + public string ZonalConfiguration { get; private set; } + + /// + /// Gets or sets specifies whether the authentication is disabled. + /// Setting this property is highly discouraged from security point of + /// view. + /// + [JsonProperty(PropertyName = "authnotrequired")] + public string Authnotrequired { get; set; } } } diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/Models/RedisCreateParameters.cs b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/Models/RedisCreateParameters.cs index 84b9a8f26b38..ff194c50a500 100644 --- a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/Models/RedisCreateParameters.cs +++ b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/Models/RedisCreateParameters.cs @@ -41,9 +41,11 @@ public RedisCreateParameters() /// 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 @@ -107,8 +109,10 @@ public RedisCreateParameters() public RedisCommonPropertiesRedisConfiguration RedisConfiguration { get; set; } /// - /// Gets or sets redis version. Only major version will be used in - /// PUT/PATCH request with current valid values: (4, 6) + /// Gets or sets 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'. /// [JsonProperty(PropertyName = "properties.redisVersion")] public string RedisVersion { get; set; } diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/Models/RedisLinkedServerCreateParameters.cs b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/Models/RedisLinkedServerCreateParameters.cs index 873b4b4aec9c..2cd4fb53c4a2 100644 --- a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/Models/RedisLinkedServerCreateParameters.cs +++ b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/Models/RedisLinkedServerCreateParameters.cs @@ -40,11 +40,19 @@ public RedisLinkedServerCreateParameters() /// cache. /// Role of the linked server. Possible values /// include: 'Primary', 'Secondary' - public RedisLinkedServerCreateParameters(string linkedRedisCacheId, string linkedRedisCacheLocation, ReplicationRole serverRole) + /// 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. + public RedisLinkedServerCreateParameters(string linkedRedisCacheId, string linkedRedisCacheLocation, ReplicationRole serverRole, string geoReplicatedPrimaryHostName = default(string), string primaryHostName = default(string)) { LinkedRedisCacheId = linkedRedisCacheId; LinkedRedisCacheLocation = linkedRedisCacheLocation; ServerRole = serverRole; + GeoReplicatedPrimaryHostName = geoReplicatedPrimaryHostName; + PrimaryHostName = primaryHostName; CustomInit(); } @@ -72,6 +80,22 @@ public RedisLinkedServerCreateParameters(string linkedRedisCacheId, string linke [JsonProperty(PropertyName = "properties.serverRole")] public ReplicationRole ServerRole { get; set; } + /// + /// Gets the unchanging DNS name which will always point to current + /// geo-primary cache among the linked redis caches for seamless Geo + /// Failover experience. + /// + [JsonProperty(PropertyName = "properties.geoReplicatedPrimaryHostName")] + public string GeoReplicatedPrimaryHostName { get; private set; } + + /// + /// Gets the changing DNS name that resolves to the current geo-primary + /// cache among the linked redis caches before or after the Geo + /// Failover. + /// + [JsonProperty(PropertyName = "properties.primaryHostName")] + public string PrimaryHostName { get; private set; } + /// /// Validate the object. /// diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/Models/RedisLinkedServerWithProperties.cs b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/Models/RedisLinkedServerWithProperties.cs index e53bcbe1158c..af2ce4466400 100644 --- a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/Models/RedisLinkedServerWithProperties.cs +++ b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/Models/RedisLinkedServerWithProperties.cs @@ -46,14 +46,22 @@ public RedisLinkedServerWithProperties() /// The type of the resource. E.g. /// "Microsoft.Compute/virtualMachines" or /// "Microsoft.Storage/storageAccounts" + /// 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. - public RedisLinkedServerWithProperties(string linkedRedisCacheId, string linkedRedisCacheLocation, ReplicationRole serverRole, string id = default(string), string name = default(string), string type = default(string), string provisioningState = default(string)) + public RedisLinkedServerWithProperties(string linkedRedisCacheId, string linkedRedisCacheLocation, ReplicationRole serverRole, string id = default(string), string name = default(string), string type = default(string), string geoReplicatedPrimaryHostName = default(string), string primaryHostName = default(string), string provisioningState = default(string)) : base(id, name, type) { LinkedRedisCacheId = linkedRedisCacheId; LinkedRedisCacheLocation = linkedRedisCacheLocation; ServerRole = serverRole; + GeoReplicatedPrimaryHostName = geoReplicatedPrimaryHostName; + PrimaryHostName = primaryHostName; ProvisioningState = provisioningState; CustomInit(); } @@ -82,6 +90,22 @@ public RedisLinkedServerWithProperties() [JsonProperty(PropertyName = "properties.serverRole")] public ReplicationRole ServerRole { get; set; } + /// + /// Gets the unchanging DNS name which will always point to current + /// geo-primary cache among the linked redis caches for seamless Geo + /// Failover experience. + /// + [JsonProperty(PropertyName = "properties.geoReplicatedPrimaryHostName")] + public string GeoReplicatedPrimaryHostName { get; private set; } + + /// + /// Gets the changing DNS name that resolves to the current geo-primary + /// cache among the linked redis caches before or after the Geo + /// Failover. + /// + [JsonProperty(PropertyName = "properties.primaryHostName")] + public string PrimaryHostName { get; private set; } + /// /// Gets terminal state of the link between primary and secondary redis /// cache. diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/Models/RedisPatchSchedule.cs b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/Models/RedisPatchSchedule.cs index 0f96f9317bb4..ea1e0c4575c7 100644 --- a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/Models/RedisPatchSchedule.cs +++ b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/Models/RedisPatchSchedule.cs @@ -42,10 +42,13 @@ public RedisPatchSchedule() /// The type of the resource. E.g. /// "Microsoft.Compute/virtualMachines" or /// "Microsoft.Storage/storageAccounts" - public RedisPatchSchedule(IList scheduleEntries, string id = default(string), string name = default(string), string type = default(string)) + /// The geo-location where the resource + /// lives + public RedisPatchSchedule(IList scheduleEntries, string id = default(string), string name = default(string), string type = default(string), string location = default(string)) : base(id, name, type) { ScheduleEntries = scheduleEntries; + Location = location; CustomInit(); } @@ -60,6 +63,12 @@ public RedisPatchSchedule() [JsonProperty(PropertyName = "properties.scheduleEntries")] public IList ScheduleEntries { get; set; } + /// + /// Gets the geo-location where the resource lives + /// + [JsonProperty(PropertyName = "location")] + public string Location { get; private set; } + /// /// Validate the object. /// diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/Models/RedisResource.cs b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/Models/RedisResource.cs index e5978b066340..3d10a30ccf73 100644 --- a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/Models/RedisResource.cs +++ b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/Models/RedisResource.cs @@ -48,9 +48,11 @@ public RedisResource() /// 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 @@ -137,8 +139,10 @@ public RedisResource() public RedisCommonPropertiesRedisConfiguration RedisConfiguration { get; set; } /// - /// Gets or sets redis version. Only major version will be used in - /// PUT/PATCH request with current valid values: (4, 6) + /// Gets or sets 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'. /// [JsonProperty(PropertyName = "properties.redisVersion")] public string RedisVersion { get; set; } diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/Models/RedisUpdateParameters.cs b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/Models/RedisUpdateParameters.cs index 03d6614b7544..71041bbfcfa2 100644 --- a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/Models/RedisUpdateParameters.cs +++ b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/Models/RedisUpdateParameters.cs @@ -38,9 +38,11 @@ public RedisUpdateParameters() /// 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 @@ -93,8 +95,10 @@ public RedisUpdateParameters() public RedisCommonPropertiesRedisConfiguration RedisConfiguration { get; set; } /// - /// Gets or sets redis version. Only major version will be used in - /// PUT/PATCH request with current valid values: (4, 6) + /// Gets or sets 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'. /// [JsonProperty(PropertyName = "properties.redisVersion")] public string RedisVersion { get; set; } diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/PrivateEndpointConnectionsOperations.cs b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/PrivateEndpointConnectionsOperations.cs index 4ecaadb4556a..f4e2d9c1b09b 100644 --- a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/PrivateEndpointConnectionsOperations.cs +++ b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/PrivateEndpointConnectionsOperations.cs @@ -812,7 +812,7 @@ internal PrivateEndpointConnectionsOperations(RedisManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 201) + if ((int)_statusCode != 200 && (int)_statusCode != 201) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -850,6 +850,24 @@ internal PrivateEndpointConnectionsOperations(RedisManagementClient client) _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + // Deserialize Response if ((int)_statusCode == 201) { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/RedisManagementClient.cs b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/RedisManagementClient.cs index 3ed9a7f02550..c269e83aaf20 100644 --- a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/RedisManagementClient.cs +++ b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/RedisManagementClient.cs @@ -111,6 +111,11 @@ public partial class RedisManagementClient : ServiceClient public virtual IPrivateLinkResourcesOperations PrivateLinkResources { get; private set; } + /// + /// Gets the IAsyncOperationStatusOperations. + /// + public virtual IAsyncOperationStatusOperations AsyncOperationStatus { get; private set; } + /// /// Initializes a new instance of the RedisManagementClient class. /// @@ -359,8 +364,9 @@ private void Initialize() LinkedServer = new LinkedServerOperations(this); PrivateEndpointConnections = new PrivateEndpointConnectionsOperations(this); PrivateLinkResources = new PrivateLinkResourcesOperations(this); + AsyncOperationStatus = new AsyncOperationStatusOperations(this); BaseUri = new System.Uri("https://management.azure.com"); - ApiVersion = "2021-06-01"; + ApiVersion = "2022-06-01"; AcceptLanguage = "en-US"; LongRunningOperationRetryTimeout = 30; GenerateClientRequestId = true; diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/RedisOperations.cs b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/RedisOperations.cs index 3967524e3e28..81548a66a2ad 100644 --- a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/RedisOperations.cs +++ b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/RedisOperations.cs @@ -456,6 +456,50 @@ internal RedisOperations(RedisManagementClient client) /// Parameters supplied to the Update Redis operation. /// /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string name, RedisUpdateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, name, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Deletes a Redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, name, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets a Redis cache (resource description). + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// /// Headers that will be added to request. /// /// @@ -476,7 +520,7 @@ internal RedisOperations(RedisManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string name, RedisUpdateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -486,10 +530,6 @@ internal RedisOperations(RedisManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); } - if (parameters == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); - } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); @@ -507,9 +547,8 @@ internal RedisOperations(RedisManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("name", name); - tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Update", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; @@ -529,7 +568,7 @@ internal RedisOperations(RedisManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PATCH"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -560,12 +599,6 @@ internal RedisOperations(RedisManagementClient client) // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Client.Credentials != null) { @@ -649,36 +682,11 @@ internal RedisOperations(RedisManagementClient client) } /// - /// Deletes a Redis cache. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the Redis cache. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, name, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Gets a Redis cache (resource description). + /// Lists all Redis caches in a resource group. /// /// /// The name of the resource group. /// - /// - /// The name of the Redis cache. - /// /// /// Headers that will be added to request. /// @@ -700,16 +708,12 @@ internal RedisOperations(RedisManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (name == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "name"); - } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); @@ -726,15 +730,13 @@ internal RedisOperations(RedisManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("name", name); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{name}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) @@ -829,7 +831,7 @@ internal RedisOperations(RedisManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -842,7 +844,7 @@ internal RedisOperations(RedisManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -862,11 +864,8 @@ internal RedisOperations(RedisManagementClient client) } /// - /// Lists all Redis caches in a resource group. + /// Gets all Redis caches in the specified subscription. /// - /// - /// The name of the resource group. - /// /// /// Headers that will be added to request. /// @@ -888,12 +887,8 @@ internal RedisOperations(RedisManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListBySubscriptionWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); @@ -909,14 +904,12 @@ internal RedisOperations(RedisManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListBySubscription", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Cache/redis").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) @@ -1044,8 +1037,15 @@ internal RedisOperations(RedisManagementClient client) } /// - /// Gets all Redis caches in the specified subscription. + /// Retrieve a Redis cache's access keys. This operation requires write + /// permission to the cache resource. /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// /// /// Headers that will be added to request. /// @@ -1067,8 +1067,16 @@ internal RedisOperations(RedisManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListBySubscriptionWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListKeysWithHttpMessagesAsync(string resourceGroupName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); @@ -1084,12 +1092,16 @@ internal RedisOperations(RedisManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("name", name); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListBySubscription", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListKeys", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Cache/redis").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{name}/listKeys").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) @@ -1103,7 +1115,7 @@ internal RedisOperations(RedisManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1184,7 +1196,7 @@ internal RedisOperations(RedisManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1197,7 +1209,7 @@ internal RedisOperations(RedisManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -1217,7 +1229,7 @@ internal RedisOperations(RedisManagementClient client) } /// - /// Retrieve a Redis cache's access keys. This operation requires write + /// Regenerate Redis cache's access keys. This operation requires write /// permission to the cache resource. /// /// @@ -1226,6 +1238,9 @@ internal RedisOperations(RedisManagementClient client) /// /// The name of the Redis cache. /// + /// + /// Specifies which key to regenerate. + /// /// /// Headers that will be added to request. /// @@ -1247,7 +1262,7 @@ internal RedisOperations(RedisManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> ListKeysWithHttpMessagesAsync(string resourceGroupName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> RegenerateKeyWithHttpMessagesAsync(string resourceGroupName, string name, RedisRegenerateKeyParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1257,6 +1272,14 @@ internal RedisOperations(RedisManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); @@ -1274,12 +1297,13 @@ internal RedisOperations(RedisManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("name", name); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListKeys", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "RegenerateKey", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{name}/listKeys").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{name}/regenerateKey").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); @@ -1326,6 +1350,12 @@ internal RedisOperations(RedisManagementClient client) // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { @@ -1409,8 +1439,8 @@ internal RedisOperations(RedisManagementClient client) } /// - /// Regenerate Redis cache's access keys. This operation requires write - /// permission to the cache resource. + /// Reboot specified Redis node(s). This operation requires write permission to + /// the cache resource. There can be potential data loss. /// /// /// The name of the resource group. @@ -1419,7 +1449,7 @@ internal RedisOperations(RedisManagementClient client) /// The name of the Redis cache. /// /// - /// Specifies which key to regenerate. + /// Specifies which Redis node(s) to reboot. /// /// /// Headers that will be added to request. @@ -1442,7 +1472,7 @@ internal RedisOperations(RedisManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> RegenerateKeyWithHttpMessagesAsync(string resourceGroupName, string name, RedisRegenerateKeyParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ForceRebootWithHttpMessagesAsync(string resourceGroupName, string name, RedisRebootParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1456,10 +1486,6 @@ internal RedisOperations(RedisManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } - if (parameters != null) - { - parameters.Validate(); - } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); @@ -1479,11 +1505,11 @@ internal RedisOperations(RedisManagementClient client) tracingParameters.Add("name", name); tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "RegenerateKey", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ForceReboot", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{name}/regenerateKey").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{name}/forceReboot").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); @@ -1586,7 +1612,7 @@ internal RedisOperations(RedisManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1599,7 +1625,7 @@ internal RedisOperations(RedisManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -1619,8 +1645,7 @@ internal RedisOperations(RedisManagementClient client) } /// - /// Reboot specified Redis node(s). This operation requires write permission to - /// the cache resource. There can be potential data loss. + /// Import data into Redis cache. /// /// /// The name of the resource group. @@ -1629,7 +1654,58 @@ internal RedisOperations(RedisManagementClient client) /// The name of the Redis cache. /// /// - /// Specifies which Redis node(s) to reboot. + /// Parameters for Redis import operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task ImportDataWithHttpMessagesAsync(string resourceGroupName, string name, ImportRDBParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginImportDataWithHttpMessagesAsync(resourceGroupName, name, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Export data from the redis cache to blobs in a container. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Parameters for Redis export operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task ExportDataWithHttpMessagesAsync(string resourceGroupName, string name, ExportRDBParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginExportDataWithHttpMessagesAsync(resourceGroupName, name, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Create or replace (overwrite/recreate, with potential downtime) an existing + /// Redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Parameters supplied to the Create Redis operation. /// /// /// Headers that will be added to request. @@ -1652,7 +1728,7 @@ internal RedisOperations(RedisManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> ForceRebootWithHttpMessagesAsync(string resourceGroupName, string name, RedisRebootParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string name, RedisCreateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1666,6 +1742,10 @@ internal RedisOperations(RedisManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } + if (parameters != null) + { + parameters.Validate(); + } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); @@ -1685,11 +1765,11 @@ internal RedisOperations(RedisManagementClient client) tracingParameters.Add("name", name); tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ForceReboot", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginCreate", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{name}/forceReboot").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{name}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); @@ -1705,7 +1785,7 @@ internal RedisOperations(RedisManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1762,7 +1842,7 @@ internal RedisOperations(RedisManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 201) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -1792,7 +1872,7 @@ internal RedisOperations(RedisManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1805,7 +1885,25 @@ internal RedisOperations(RedisManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -1825,58 +1923,7 @@ internal RedisOperations(RedisManagementClient client) } /// - /// Import data into Redis cache. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the Redis cache. - /// - /// - /// Parameters for Redis import operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task ImportDataWithHttpMessagesAsync(string resourceGroupName, string name, ImportRDBParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginImportDataWithHttpMessagesAsync(resourceGroupName, name, parameters, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Export data from the redis cache to blobs in a container. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the Redis cache. - /// - /// - /// Parameters for Redis export operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task ExportDataWithHttpMessagesAsync(string resourceGroupName, string name, ExportRDBParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginExportDataWithHttpMessagesAsync(resourceGroupName, name, parameters, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Create or replace (overwrite/recreate, with potential downtime) an existing - /// Redis cache. + /// Update an existing Redis cache. /// /// /// The name of the resource group. @@ -1885,7 +1932,7 @@ internal RedisOperations(RedisManagementClient client) /// The name of the Redis cache. /// /// - /// Parameters supplied to the Create Redis operation. + /// Parameters supplied to the Update Redis operation. /// /// /// Headers that will be added to request. @@ -1908,7 +1955,7 @@ internal RedisOperations(RedisManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string name, RedisCreateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string name, RedisUpdateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1922,10 +1969,6 @@ internal RedisOperations(RedisManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } - if (parameters != null) - { - parameters.Validate(); - } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); @@ -1945,7 +1988,7 @@ internal RedisOperations(RedisManagementClient client) tracingParameters.Add("name", name); tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginCreate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; @@ -1965,7 +2008,7 @@ internal RedisOperations(RedisManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.Method = new HttpMethod("PATCH"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -2022,7 +2065,7 @@ internal RedisOperations(RedisManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 201) + if ((int)_statusCode != 200 && (int)_statusCode != 202) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -2078,7 +2121,7 @@ internal RedisOperations(RedisManagementClient client) } } // Deserialize Response - if ((int)_statusCode == 201) + if ((int)_statusCode == 202) { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/RedisOperationsExtensions.cs b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/RedisOperationsExtensions.cs index 0c84e7888b39..346cdb525365 100644 --- a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/RedisOperationsExtensions.cs +++ b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/RedisOperationsExtensions.cs @@ -605,6 +605,52 @@ public static RedisResource BeginCreate(this IRedisOperations operations, string } } + /// + /// Update an existing Redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Parameters supplied to the Update Redis operation. + /// + public static RedisResource BeginUpdate(this IRedisOperations operations, string resourceGroupName, string name, RedisUpdateParameters parameters) + { + return operations.BeginUpdateAsync(resourceGroupName, name, parameters).GetAwaiter().GetResult(); + } + + /// + /// Update an existing Redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Parameters supplied to the Update Redis operation. + /// + /// + /// The cancellation token. + /// + public static async Task BeginUpdateAsync(this IRedisOperations operations, string resourceGroupName, string name, RedisUpdateParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginUpdateWithHttpMessagesAsync(resourceGroupName, name, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// Deletes a Redis cache. /// diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/SdkInfo_RedisManagementClient.cs b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/SdkInfo_RedisManagementClient.cs index 1a0aa224f4e4..7e639c56a4d2 100644 --- a/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/SdkInfo_RedisManagementClient.cs +++ b/sdk/redis/Microsoft.Azure.Management.Redis/src/Generated/SdkInfo_RedisManagementClient.cs @@ -19,23 +19,24 @@ public static IEnumerable> ApiInfo_RedisManagement { return new Tuple[] { - new Tuple("Cache", "FirewallRules", "2021-06-01"), - new Tuple("Cache", "LinkedServer", "2021-06-01"), - new Tuple("Cache", "Operations", "2021-06-01"), - new Tuple("Cache", "PatchSchedules", "2021-06-01"), - new Tuple("Cache", "PrivateEndpointConnections", "2021-06-01"), - new Tuple("Cache", "PrivateLinkResources", "2021-06-01"), - new Tuple("Cache", "Redis", "2021-06-01"), + new Tuple("Cache", "AsyncOperationStatus", "2022-06-01"), + new Tuple("Cache", "FirewallRules", "2022-06-01"), + new Tuple("Cache", "LinkedServer", "2022-06-01"), + new Tuple("Cache", "Operations", "2022-06-01"), + new Tuple("Cache", "PatchSchedules", "2022-06-01"), + new Tuple("Cache", "PrivateEndpointConnections", "2022-06-01"), + new Tuple("Cache", "PrivateLinkResources", "2022-06-01"), + new Tuple("Cache", "Redis", "2022-06-01"), }.AsEnumerable(); } } // BEGIN: Code Generation Metadata Section - public static readonly String AutoRestVersion = "v2"; - public static readonly String AutoRestBootStrapperVersion = "autorest@3.3.2"; - public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/main/specification/redis/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=C:\\Users\\prravikumar\\repo\\azure-sdk-for-net\\sdk"; + public static readonly String AutoRestVersion = "2.0.4421"; + public static readonly String AutoRestBootStrapperVersion = "autorest@2.0.4413"; + public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/main/specification/redis/resource-manager/readme.md --csharp --version=2.0.4421 --reflect-api-versions --csharp-sdks-folder=C:\\Users\\austintolani\\Repos\\azure-sdk-for-net\\sdk"; public static readonly String GithubForkName = "Azure"; public static readonly String GithubBranchName = "main"; - public static readonly String GithubCommidId = "58891380ba22c3565ca884dee3831445f638b545"; + public static readonly String GithubCommidId = "2ecbe51762643c7f6b6c6d8dd604dd934a1cc808"; public static readonly String CodeGenerationErrors = ""; public static readonly String GithubRepoName = "azure-rest-api-specs"; // END: Code Generation Metadata Section diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/src/Microsoft.Azure.Management.Redis.csproj b/sdk/redis/Microsoft.Azure.Management.Redis/src/Microsoft.Azure.Management.Redis.csproj index 10b506f05816..7534758e9acf 100644 --- a/sdk/redis/Microsoft.Azure.Management.Redis/src/Microsoft.Azure.Management.Redis.csproj +++ b/sdk/redis/Microsoft.Azure.Management.Redis/src/Microsoft.Azure.Management.Redis.csproj @@ -6,22 +6,31 @@ Microsoft.Azure.Management.Redis Provides redis cache management capabilities for Microsoft Azure. - 8.0.0 + 9.0.0 Microsoft.Azure.Management.Redis Microsoft Azure Redis Cache management;Redis Management; [Breaking changes included] - 1. The type of "RedisConfiguration" is modified from IDictionary<string, string> to Microsoft.Azure.Management.Redis.Models.RedisCommonPropertiesRedisConfiguration in the following places - Microsoft.Azure.Management.Redis.Models.RedisResource - Microsoft.Azure.Management.Redis.Models.RedisCreateParameters - Microsoft.Azure.Management.Redis.Models.RedisUpdateParameters - + 1. Deleting a linked server is now a long running operation. + 2. Updating a cache is now a long running operation. [New Features] - 1. Managed Identity can be assigned during creation of Microsoft.Azure.Management.Redis.Models.RedisResource - 2. Managed Identity assigned to RedisResource can be updated or deleted. - + 1. New operation group AsyncOperationStatusOperations + 2. ExportRDBParameters has a new parameter preferredDataArchiveAuthMethod + 3. ImportRDBParameters has a new parameter preferredDataArchiveAuthMethod + 4. RedisCommonPropertiesRedisConfiguration has a new parameter aofBackupEnabled + 5. RedisCommonPropertiesRedisConfiguration has a new parameter authnotrequired + 6. RedisCommonPropertiesRedisConfiguration has a new parameter zonalConfiguration + 7. RedisPatchSchedule has a new parameter location + 8. RedisLinkedServerCreateParameters has a new parameter geoReplicatedHostName + 9. RedisLinkedServerCreateParameters has a new parameter primaryHostName + 10. RedisLinkedServerCreateProperties has a new parameter geoReplicatedHostName + 11. RedisLinkedServerCreateProperties has a new parameter primaryHostName + 12. RedisLinkedServerProperties has a new parameter geoReplicatedHostName + 13. RedisLinkedServerProperties has a new parameter primaryHostName + 14. RedisLinkedServerWithProperties has a new parameter geoReplicatedHostName + 15. RedisLinkedServerWithProperties has a new parameter primaryHostName [Updates] - 1. Api version "2021-06-01" will be used in the HTTP requests. + 1. Api version "2022-06-01" will be used in the HTTP requests. diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/src/Properties/AssemblyInfo.cs b/sdk/redis/Microsoft.Azure.Management.Redis/src/Properties/AssemblyInfo.cs index 11bcb1c664e2..9a2b55fcdb3d 100644 --- a/sdk/redis/Microsoft.Azure.Management.Redis/src/Properties/AssemblyInfo.cs +++ b/sdk/redis/Microsoft.Azure.Management.Redis/src/Properties/AssemblyInfo.cs @@ -8,8 +8,8 @@ [assembly: AssemblyTitle("Microsoft Azure Redis Cache Management Library")] [assembly: AssemblyDescription("Provides Microsoft Azure redis cache management operations.")] -[assembly: AssemblyVersion("8.0.0.0")] -[assembly: AssemblyFileVersion("8.0.0.0")] +[assembly: AssemblyVersion("9.0.0.0")] +[assembly: AssemblyFileVersion("9.0.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/tests/InMemoryTests/CreateOrUpdateTests.cs b/sdk/redis/Microsoft.Azure.Management.Redis/tests/InMemoryTests/CreateOrUpdateTests.cs index 7d64d4386c9e..e367fa466ac1 100644 --- a/sdk/redis/Microsoft.Azure.Management.Redis/tests/InMemoryTests/CreateOrUpdateTests.cs +++ b/sdk/redis/Microsoft.Azure.Management.Redis/tests/InMemoryTests/CreateOrUpdateTests.cs @@ -138,10 +138,10 @@ public void CheckNameAvailability_409() { RedisManagementClient client = Utility.GetRedisManagementClient(null, null, HttpStatusCode.Conflict); Assert.Throws(() => client.Redis.CheckNameAvailability(parameters: new CheckNameAvailabilityParameters - { - Name = "cachename", - Type = "Microsoft.Cache/Redis" - })); + { + Name = "cachename", + Type = "Microsoft.Cache/Redis" + })); } [Fact] @@ -238,7 +238,7 @@ public void CreateOrUpdate_BasicWithTagsAndConfig() ""capacity"": 1 }, ""redisVersion"" : ""2.8"", - ""redisConfiguration"": {""maxmemory-policy"": ""allkeys-lru""}, + ""redisConfiguration"": {""maxmemory-policy"": ""allkeys-lru"",""preferred-data-persistence-auth-method"": ""ManagedIdentity"",""aof-backup-enabled"":""Enabled"",""zonal-configuration"":""zonalconfig"",""authnotrequired"":""Enabled""}, ""accessKeys"" : { ""primaryKey"" : ""aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa="", ""secondaryKey"" : ""bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb="" @@ -279,12 +279,16 @@ public void CreateOrUpdate_BasicWithTagsAndConfig() Family = SkuFamily.C, Capacity = 1 }, - RedisConfiguration = new RedisCommonPropertiesRedisConfiguration(){ - MaxmemoryPolicy = "allkeys-lru" + RedisConfiguration = new RedisCommonPropertiesRedisConfiguration() + { + MaxmemoryPolicy = "allkeys-lru", + AofBackupEnabled = "True", + PreferredDataPersistenceAuthMethod = "ManagedIdentity", + Authnotrequired = "Enabled" }, MinimumTlsVersion = TlsVersion.OneFullStopTwo, ReplicasPerMaster = 2 - }); + }); ; Assert.Equal("/subscriptions/a559b6fd-3a84-40bb-a450-b0db5ed37dfe/resourceGroups/HydraTest07152014/providers/Microsoft.Cache/Redis/hydraradiscache", response.Id); Assert.Equal("North Europe", response.Location); @@ -297,6 +301,10 @@ public void CreateOrUpdate_BasicWithTagsAndConfig() Assert.Equal(1, response.Sku.Capacity); Assert.Equal("2.8", response.RedisVersion); Assert.Equal("allkeys-lru", response.RedisConfiguration.MaxmemoryPolicy); + Assert.Equal("ManagedIdentity", response.RedisConfiguration.PreferredDataPersistenceAuthMethod); + Assert.Equal("Enabled", response.RedisConfiguration.AofBackupEnabled); + Assert.Equal("zonalconfig", response.RedisConfiguration.ZonalConfiguration); + Assert.Equal("Enabled", response.RedisConfiguration.Authnotrequired); Assert.Equal("hydraradiscache.cache.icbbvt.windows-int.net", response.HostName); Assert.Equal(6379, response.Port); diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/tests/ScenarioTests/BeginCreateFunctionalTests.cs b/sdk/redis/Microsoft.Azure.Management.Redis/tests/ScenarioTests/BeginCreateBeginUpdateFunctionalTests.cs similarity index 67% rename from sdk/redis/Microsoft.Azure.Management.Redis/tests/ScenarioTests/BeginCreateFunctionalTests.cs rename to sdk/redis/Microsoft.Azure.Management.Redis/tests/ScenarioTests/BeginCreateBeginUpdateFunctionalTests.cs index 453738f5c808..6b5ac17e2c65 100644 --- a/sdk/redis/Microsoft.Azure.Management.Redis/tests/ScenarioTests/BeginCreateFunctionalTests.cs +++ b/sdk/redis/Microsoft.Azure.Management.Redis/tests/ScenarioTests/BeginCreateBeginUpdateFunctionalTests.cs @@ -11,10 +11,10 @@ namespace AzureRedisCache.Tests { - public class BeginCreateFunctionalTests : TestBase + public class BeginCreateBeginUpdateFunctionalTests : TestBase { [Fact] - public void BeginCreateFunctionalTest() + public void BeginCreateBeginUpdateFunctionalTest() { using (var context = MockContext.Start(this.GetType())) { @@ -38,22 +38,22 @@ public void BeginCreateFunctionalTest() }, MinimumTlsVersion = TlsVersion.OneFullStopTwo, ReplicasPerMaster = 2, - RedisVersion = "6", + RedisVersion = "latest", RedisConfiguration = new RedisCommonPropertiesRedisConfiguration( maxmemoryPolicy: "allkeys-lru", - additionalProperties: new Dictionary() { { "maxmemory-reserved", "210" } }) + additionalProperties: new Dictionary() { { "maxmemory-reserved", "700" } }) }); Assert.Contains(redisCacheName, response.Id); - Assert.Equal("210", response.RedisConfiguration.MaxmemoryDelta); - Assert.Equal("210", response.RedisConfiguration.MaxmemoryReserved); + Assert.Equal("700", response.RedisConfiguration.MaxmemoryDelta); + Assert.Equal("700", response.RedisConfiguration.MaxmemoryReserved); Assert.Equal(redisCacheName, response.Name); Assert.Equal(ProvisioningState.Creating, response.ProvisioningState, ignoreCase: true); Assert.Equal(SkuName.Premium, response.Sku.Name); Assert.Equal(SkuFamily.P, response.Sku.Family); Assert.Equal(TlsVersion.OneFullStopTwo, response.MinimumTlsVersion); Assert.Equal(2, response.ReplicasPerMaster); - Assert.Equal("6", response.RedisVersion.Split(".")[0]); + Assert.Equal("6", response.RedisVersion.Split(".")[0]); // 6 is the current 'latest' version. Will change in the future. Assert.Equal(3, response.Instances.Count); for (int i = 0; i < response.Instances.Count; i++) @@ -74,6 +74,37 @@ public void BeginCreateFunctionalTest() TestUtilities.Wait(new TimeSpan(0, 0, 30)); } + Sku p2 = new Sku() + { + Name = SkuName.Premium, + Family = SkuFamily.P, + Capacity = 2 + }; + RedisResource updateResponse = _client.Redis.BeginUpdate(resourceGroupName, redisCacheName, parameters: new RedisUpdateParameters + { + + Sku = p2, + MinimumTlsVersion = TlsVersion.OneFullStopTwo, + ReplicasPerMaster = 2, + RedisVersion = "latest", + RedisConfiguration = new RedisCommonPropertiesRedisConfiguration( + maxmemoryPolicy: "allkeys-lru", + additionalProperties: new Dictionary() { { "maxmemory-reserved", "700" } }) + }); + + Assert.Equal(ProvisioningState.Scaling, updateResponse.ProvisioningState); + + for (int i = 0; i < 60; i++) + { + updateResponse = _client.Redis.Get(resourceGroupName, redisCacheName); + if (ProvisioningState.Succeeded.Equals(updateResponse.ProvisioningState, StringComparison.OrdinalIgnoreCase)) + { + break; + } + TestUtilities.Wait(new TimeSpan(0, 0, 30)); + } + Assert.Equal(p2.Capacity, updateResponse.Sku.Capacity); + _client.Redis.Delete(resourceGroupName: resourceGroupName, name: redisCacheName); _redisCacheManagementHelper.DeleteResourceGroup(resourceGroupName); } diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/tests/ScenarioTests/GeoReplicationFunctionalTests.cs b/sdk/redis/Microsoft.Azure.Management.Redis/tests/ScenarioTests/GeoReplicationFunctionalTests.cs index 0d61a496c79a..71b6237cea72 100644 --- a/sdk/redis/Microsoft.Azure.Management.Redis/tests/ScenarioTests/GeoReplicationFunctionalTests.cs +++ b/sdk/redis/Microsoft.Azure.Management.Redis/tests/ScenarioTests/GeoReplicationFunctionalTests.cs @@ -14,8 +14,14 @@ namespace AzureRedisCache.Tests { public class GeoReplicationFunctionalTests : TestBase { - [Fact] - public void GeoReplicationFunctionalTest() + [Theory] + // TODO: enable synchronous testing of geo replication methods. + // An issue with the HTTP test recorder not recording LRO calls + // is causing a 'Unable to find a matching HTTP request for URL' error. + // This works when running in 'Record' mode just not in 'Playback' mode. + //[InlineData(false)] + [InlineData(true)] + public void GeoReplicationFunctionalTest(bool async) { using (var context = MockContext.Start(this.GetType())) { @@ -82,20 +88,42 @@ public void GeoReplicationFunctionalTest() // Fail if any of 2 cache is not created successfully Assert.Equal(ProvisioningState.Succeeded, ncResponse.ProvisioningState, ignoreCase: true); Assert.Equal(ProvisioningState.Succeeded, scResponse.ProvisioningState, ignoreCase: true); - - // Set up replication link - RedisLinkedServerWithProperties linkServerWithProperties = _client.LinkedServer.Create(resourceGroupName, redisCacheName1, redisCacheName2, new RedisLinkedServerCreateParameters - { - LinkedRedisCacheId = scResponse.Id, - LinkedRedisCacheLocation = RedisCacheManagementHelper.SecondaryLocation, - ServerRole = ReplicationRole.Secondary - }); - - Assert.Equal(redisCacheName2, linkServerWithProperties.Name); - Assert.Equal(scResponse.Id, linkServerWithProperties.LinkedRedisCacheId); - Assert.Equal(RedisCacheManagementHelper.SecondaryLocation, linkServerWithProperties.LinkedRedisCacheLocation); - Assert.Equal(ReplicationRole.Secondary, linkServerWithProperties.ServerRole); - Assert.Equal("succeeded", linkServerWithProperties.ProvisioningState, ignoreCase: true); + + RedisLinkedServerCreateParameters redisLinkedServerCreateParameters = new RedisLinkedServerCreateParameters + { + LinkedRedisCacheId = scResponse.Id, + LinkedRedisCacheLocation = RedisCacheManagementHelper.SecondaryLocation, + ServerRole = ReplicationRole.Secondary + }; + // Set up replication link asynchronously or synchronously + RedisLinkedServerWithProperties linkedServerWithProperties = null; + if (async) + { + linkedServerWithProperties = _client.LinkedServer.BeginCreate(resourceGroupName, redisCacheName1, redisCacheName2, redisLinkedServerCreateParameters); + } + else + { + linkedServerWithProperties = _client.LinkedServer.Create(resourceGroupName, redisCacheName1, redisCacheName2, redisLinkedServerCreateParameters); + // When created synchronously, linking should be complete after create call + Assert.Equal(ProvisioningState.Succeeded, linkedServerWithProperties.ProvisioningState, ignoreCase: true); + } + // When created asynchronously, linking should complete in a couple minutes + for (int i = 0; i < 120; i++) + { + linkedServerWithProperties = _client.LinkedServer.Get(resourceGroupName, redisCacheName1, redisCacheName2); + if (linkedServerWithProperties.ProvisioningState.Equals(ProvisioningState.Succeeded, StringComparison.OrdinalIgnoreCase)) + { + break; + } + TestUtilities.Wait(new TimeSpan(0, 0, 30)); + } + + Assert.Equal(ProvisioningState.Succeeded, linkedServerWithProperties.ProvisioningState, ignoreCase: true); + Assert.Equal(redisCacheName2, linkedServerWithProperties.Name); + Assert.Equal(scResponse.Id, linkedServerWithProperties.LinkedRedisCacheId); + Assert.Equal(RedisCacheManagementHelper.SecondaryLocation, linkedServerWithProperties.LinkedRedisCacheLocation); + Assert.Equal(ReplicationRole.Secondary, linkedServerWithProperties.ServerRole); + Assert.False(string.IsNullOrEmpty(linkedServerWithProperties.GeoReplicatedPrimaryHostName)); // test get response from primary RedisLinkedServerWithProperties primaryLinkProperties = _client.LinkedServer.Get(resourceGroupName, redisCacheName1, redisCacheName2); @@ -106,7 +134,7 @@ public void GeoReplicationFunctionalTest() // test list response from primary IPage allPrimaryLinkProperties = _client.LinkedServer.List(resourceGroupName, redisCacheName1); Assert.Single(allPrimaryLinkProperties); - + // test get response from secondary RedisLinkedServerWithProperties secondaryLinkProperties = _client.LinkedServer.Get(resourceGroupName, redisCacheName2, redisCacheName1); Assert.Equal(ncResponse.Id, secondaryLinkProperties.LinkedRedisCacheId); @@ -118,9 +146,18 @@ public void GeoReplicationFunctionalTest() Assert.Single(allSecondaryLinkProperties); // Delete link on primary - _client.LinkedServer.Delete(resourceGroupName, redisCacheName1, redisCacheName2); + if (async) + { + _client.LinkedServer.BeginDelete(resourceGroupName, redisCacheName1, redisCacheName2); + } + else + { + _client.LinkedServer.Delete(resourceGroupName, redisCacheName1, redisCacheName2); + // When deleted synchronously, link should be deleted after delete call + Assert.Empty(_client.LinkedServer.List(resourceGroupName, redisCacheName1)); + } - // links should disappear in 5 min + // When deleted synchronously, links should disappear in 5 min IPage afterDeletePrimaryLinkProperties = null; IPage afterDeleteSecondaryLinkProperties = null; for (int i = 0; i < 10; i++) diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/tests/ScenarioTests/ManagedIdentityTests.cs b/sdk/redis/Microsoft.Azure.Management.Redis/tests/ScenarioTests/ManagedIdentityTests.cs index a1c37951fd9e..630fb443ae14 100644 --- a/sdk/redis/Microsoft.Azure.Management.Redis/tests/ScenarioTests/ManagedIdentityTests.cs +++ b/sdk/redis/Microsoft.Azure.Management.Redis/tests/ScenarioTests/ManagedIdentityTests.cs @@ -25,9 +25,14 @@ public void ManagedIdentityCreateUpdateFunctionalTest() var resourceGroupName = TestUtilities.GenerateName("RedisBegin"); var redisCacheName = TestUtilities.GenerateName("RedisBegin"); + + + // ARM resource id of *EXISTING* user assigned identity in the form /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName} + // TODO: Create user assigned identity at runtime instead of hard coding the ID + string userAssignedIdentityId = "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/tolani-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test-uami"; + var _client = RedisCacheManagementTestUtilities.GetRedisManagementClient(this, context); RedisResource response; - _redisCacheManagementHelper.TryCreateResourceGroup(resourceGroupName, RedisCacheManagementHelper.Location); response = _client.Redis.BeginCreate(resourceGroupName, redisCacheName, parameters: new RedisCreateParameters @@ -42,7 +47,7 @@ public void ManagedIdentityCreateUpdateFunctionalTest() Identity = new ManagedServiceIdentity(type: ManagedServiceIdentityType.SystemAssignedUserAssigned , userAssignedIdentities: new Dictionary { - {"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/prn-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test", new UserAssignedIdentity() }, + {userAssignedIdentityId, new UserAssignedIdentity() }, } ) }); @@ -86,7 +91,7 @@ public void ManagedIdentityCreateUpdateFunctionalTest() Identity = new ManagedServiceIdentity(type: ManagedServiceIdentityType.UserAssigned , userAssignedIdentities: new Dictionary { - {"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/prn-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test", new UserAssignedIdentity() }, + {userAssignedIdentityId, new UserAssignedIdentity() }, } ) }); diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/tests/ScenarioTests/PatchSchedulesFunctionalTests.cs b/sdk/redis/Microsoft.Azure.Management.Redis/tests/ScenarioTests/PatchSchedulesFunctionalTests.cs index b865f26a8b94..7e5d2c6e914f 100644 --- a/sdk/redis/Microsoft.Azure.Management.Redis/tests/ScenarioTests/PatchSchedulesFunctionalTests.cs +++ b/sdk/redis/Microsoft.Azure.Management.Redis/tests/ScenarioTests/PatchSchedulesFunctionalTests.cs @@ -87,6 +87,7 @@ private void ValidateResponseForSchedulePatch(RedisPatchSchedule schedulesSet, s Assert.Contains(redisName + "/patchSchedules/default", schedulesSet.Id); Assert.Contains(redisName + "/default", schedulesSet.Name); Assert.Contains("Microsoft.Cache/Redis/PatchSchedules", schedulesSet.Type); + Assert.Equal(RedisCacheManagementHelper.Location,schedulesSet.Location); Assert.Equal(2, schedulesSet.ScheduleEntries.Count); foreach (var schedule in schedulesSet.ScheduleEntries) { diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/BeginCreateBeginUpdateFunctionalTests/BeginCreateBeginUpdateFunctionalTest.json b/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/BeginCreateBeginUpdateFunctionalTests/BeginCreateBeginUpdateFunctionalTest.json new file mode 100644 index 000000000000..77261a8c006b --- /dev/null +++ b/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/BeginCreateBeginUpdateFunctionalTests/BeginCreateBeginUpdateFunctionalTest.json @@ -0,0 +1,4810 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/register?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d1b324c6-44e5-4027-8e72-532ca9d11208" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "e8f958ef-7977-4dc3-aee8-c56efc04020b" + ], + "x-ms-correlation-request-id": [ + "e8f958ef-7977-4dc3-aee8-c56efc04020b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T182145Z:e8f958ef-7977-4dc3-aee8-c56efc04020b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 17 Oct 2022 18:21:45 GMT" + ], + "Content-Length": [ + "14731" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Qatar Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateLinkResources\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateLinkResources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise/databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/EventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dac9c894-8402-44d6-a4d7-06b032e26651" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "9268128b-5c78-4944-b877-5ec02d14b00f" + ], + "x-ms-correlation-request-id": [ + "9268128b-5c78-4944-b877-5ec02d14b00f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T182145Z:9268128b-5c78-4944-b877-5ec02d14b00f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 17 Oct 2022 18:21:45 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "14731" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Qatar Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateLinkResources\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateLinkResources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise/databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/EventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/RedisBegin1916?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlZ3JvdXBzL1JlZGlzQmVnaW4xOTE2P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "502b1b26-af10-4880-9e4e-b5f2d6d07214" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "0e2b7888-6e9d-40f6-b57e-155695729ac9" + ], + "x-ms-correlation-request-id": [ + "0e2b7888-6e9d-40f6-b57e-155695729ac9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T182146Z:0e2b7888-6e9d-40f6-b57e-155695729ac9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 17 Oct 2022 18:21:46 GMT" + ], + "Content-Length": [ + "181" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916\",\r\n \"name\": \"RedisBegin1916\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/RedisBegin1916?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlZ3JvdXBzL1JlZGlzQmVnaW4xOTE2P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "77c72c62-b62c-4c9c-82b3-8e6fa6424f58" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "29722c83-86f7-43d9-ae1d-0e6ae4f2428f" + ], + "x-ms-correlation-request-id": [ + "29722c83-86f7-43d9-ae1d-0e6ae4f2428f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T182146Z:29722c83-86f7-43d9-ae1d-0e6ae4f2428f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 17 Oct 2022 18:21:46 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "181" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916\",\r\n \"name\": \"RedisBegin1916\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\"\r\n },\r\n \"redisVersion\": \"latest\",\r\n \"replicasPerMaster\": 2,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2c6ea14d-fc96-4976-bf8b-2b8abee5b071" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "351" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/ca05795f-e68f-406c-8076-2a1adfeea605?api-version=2022-06-01" + ], + "x-ms-request-id": [ + "ca05795f-e68f-406c-8076-2a1adfeea605" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "6e1c173d-b1cc-48ad-8c58-42ae2a9a8389" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T182147Z:6e1c173d-b1cc-48ad-8c58-42ae2a9a8389" + ], + "Date": [ + "Mon, 17 Oct 2022 18:21:47 GMT" + ], + "Content-Length": [ + "1446" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\"\r\n },\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b69af450-f147-462f-9fe5-e2399b7ce3d7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "47dbaf32-0380-40a6-8b0d-5e032c0e0b0f" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "ee251494-db6d-4667-b1ea-8fa8872cbd5d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T182148Z:ee251494-db6d-4667-b1ea-8fa8872cbd5d" + ], + "Date": [ + "Mon, 17 Oct 2022 18:21:47 GMT" + ], + "Content-Length": [ + "925" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a728488-a89b-4305-a716-654e5cb675dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d523d3ac-bec7-47a0-8f3c-6e83acf8a8de" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "86498b9c-1255-4560-8781-7ab3fb1dfdbd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T182218Z:86498b9c-1255-4560-8781-7ab3fb1dfdbd" + ], + "Date": [ + "Mon, 17 Oct 2022 18:22:17 GMT" + ], + "Content-Length": [ + "925" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f675eb10-fd24-4050-a531-5bdd7c46cd30" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "09ce3499-b153-4a6a-b735-d2e9104dbb42" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "a3a99c8b-5647-41fd-bee8-5004c45101ee" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T182248Z:a3a99c8b-5647-41fd-bee8-5004c45101ee" + ], + "Date": [ + "Mon, 17 Oct 2022 18:22:47 GMT" + ], + "Content-Length": [ + "925" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "061cf9b2-afa0-4e83-ac2f-93c4e2b8008b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3f721e77-42ab-410e-b792-7f97368a6189" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "7745e146-834e-49cc-8bee-24ae58bf4e6e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T182318Z:7745e146-834e-49cc-8bee-24ae58bf4e6e" + ], + "Date": [ + "Mon, 17 Oct 2022 18:23:17 GMT" + ], + "Content-Length": [ + "925" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0b682cf0-c75f-4591-9c1a-ad59c0f015ec" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "48fea39e-548c-40d8-b091-89d8faf134ce" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "ad1546c6-006b-4db3-8a54-e52517e13fe6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T182348Z:ad1546c6-006b-4db3-8a54-e52517e13fe6" + ], + "Date": [ + "Mon, 17 Oct 2022 18:23:48 GMT" + ], + "Content-Length": [ + "925" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "138a82fd-5dea-4f5b-a79c-9569e5a659d6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f0342f44-9d99-47de-8e06-51f251c1b720" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "b7bf33c8-523d-42bc-bfa3-26f133a36090" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T182418Z:b7bf33c8-523d-42bc-bfa3-26f133a36090" + ], + "Date": [ + "Mon, 17 Oct 2022 18:24:18 GMT" + ], + "Content-Length": [ + "925" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "739539e5-5ec0-4a30-90c9-c7fa716d02df" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "864d22a3-c068-4bf0-bc01-70d85204dbe4" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "9c74e995-dc38-4561-a212-03bdf244fd02" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T182448Z:9c74e995-dc38-4561-a212-03bdf244fd02" + ], + "Date": [ + "Mon, 17 Oct 2022 18:24:48 GMT" + ], + "Content-Length": [ + "925" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7318b7bb-3b95-4973-98d2-0704196beaa3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ff65f322-d8e8-458f-8cf1-b3d5f66ab06a" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "c59934d1-46fe-4121-9b85-c3fa697e7edc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T182519Z:c59934d1-46fe-4121-9b85-c3fa697e7edc" + ], + "Date": [ + "Mon, 17 Oct 2022 18:25:18 GMT" + ], + "Content-Length": [ + "925" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e01949f2-ca55-4c72-ac74-f0ccac653214" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "27848bee-b3ac-4e7a-9719-667f766070e2" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "9244c59d-3f19-480e-877d-d65be60a1584" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T182549Z:9244c59d-3f19-480e-877d-d65be60a1584" + ], + "Date": [ + "Mon, 17 Oct 2022 18:25:48 GMT" + ], + "Content-Length": [ + "925" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c20187a6-854e-4373-a6b9-9f67091e0c6b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "70789de1-7dbf-4fb5-a6c1-d03d38de1156" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "9b715dd4-ee6c-4c88-835e-75ab075223d9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T182619Z:9b715dd4-ee6c-4c88-835e-75ab075223d9" + ], + "Date": [ + "Mon, 17 Oct 2022 18:26:19 GMT" + ], + "Content-Length": [ + "925" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "99098a6f-c9ec-4794-9df3-7036397fb2b8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3cbe0b5d-b1bc-4728-a2a2-b9b3eff0f989" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "ec78957c-65f6-4020-83ed-851b02ee6097" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T182649Z:ec78957c-65f6-4020-83ed-851b02ee6097" + ], + "Date": [ + "Mon, 17 Oct 2022 18:26:48 GMT" + ], + "Content-Length": [ + "925" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c3f9f235-d145-413a-a302-276eaff4e7fd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a075d29a-ea02-427b-ad29-4b24abe3d55a" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "0c8b01b5-1eb6-4404-80ab-8161e06ab039" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T182719Z:0c8b01b5-1eb6-4404-80ab-8161e06ab039" + ], + "Date": [ + "Mon, 17 Oct 2022 18:27:19 GMT" + ], + "Content-Length": [ + "925" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "888676e9-6510-4669-9c10-83788e5cca40" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d12009ce-8abf-4c1e-ae9d-65343b08311e" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "f85f59c4-dde8-4b6e-8650-9e99a94b1939" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T182749Z:f85f59c4-dde8-4b6e-8650-9e99a94b1939" + ], + "Date": [ + "Mon, 17 Oct 2022 18:27:48 GMT" + ], + "Content-Length": [ + "925" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "330aad09-9afa-49d0-a0a6-1d0dc98117ee" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "551c2208-9fbf-44ca-bc8f-89e2456a5c04" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "0f6bb672-b982-45da-ad8c-a15a358d7290" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T182819Z:0f6bb672-b982-45da-ad8c-a15a358d7290" + ], + "Date": [ + "Mon, 17 Oct 2022 18:28:19 GMT" + ], + "Content-Length": [ + "925" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a56840c3-9c8f-4fe6-88ea-0613cbca715b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7f2d1067-fa4b-4d61-aefd-f3c96d150d28" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "ad8b56df-512f-4a7d-a715-7c5a50148e9c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T182849Z:ad8b56df-512f-4a7d-a715-7c5a50148e9c" + ], + "Date": [ + "Mon, 17 Oct 2022 18:28:49 GMT" + ], + "Content-Length": [ + "925" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a0c7b6c8-34e6-413d-8e3f-2d45af5c8ac8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8e67626d-056d-463c-80f0-a6822fa9d731" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "d2ec869e-c915-40f1-bf76-489f47ec2395" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T182920Z:d2ec869e-c915-40f1-bf76-489f47ec2395" + ], + "Date": [ + "Mon, 17 Oct 2022 18:29:19 GMT" + ], + "Content-Length": [ + "925" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fbce1ef0-16d2-43e1-b5aa-964a2a51bbea" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "de0b3fa4-b85d-4a77-afbf-c4e731754ae8" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "9fda0c9d-9513-4550-99f0-254558033aa5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T182950Z:9fda0c9d-9513-4550-99f0-254558033aa5" + ], + "Date": [ + "Mon, 17 Oct 2022 18:29:50 GMT" + ], + "Content-Length": [ + "925" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d73d0c67-3485-4e60-90ad-885324708bb5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2010d223-5f9c-42e4-8f17-41ca9d8d7219" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "ce9f3090-ef85-4eef-ae41-56d188ce4da9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T183020Z:ce9f3090-ef85-4eef-ae41-56d188ce4da9" + ], + "Date": [ + "Mon, 17 Oct 2022 18:30:19 GMT" + ], + "Content-Length": [ + "925" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e711d08-e223-424b-9af0-fc73ea18c019" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7dce95ec-1b9a-4b6d-b457-8ce2cc66712d" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "951c1cd7-6fd7-4bd5-80fe-6e9603a66b1b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T183050Z:951c1cd7-6fd7-4bd5-80fe-6e9603a66b1b" + ], + "Date": [ + "Mon, 17 Oct 2022 18:30:50 GMT" + ], + "Content-Length": [ + "925" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a66e150b-3a2a-45f9-a429-885c637b4525" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cc91778e-2d01-45fa-a71f-bd6f698fd544" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "d2e4235e-070c-43f4-995f-000a71790623" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T183121Z:d2e4235e-070c-43f4-995f-000a71790623" + ], + "Date": [ + "Mon, 17 Oct 2022 18:31:20 GMT" + ], + "Content-Length": [ + "925" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c7f196ec-5947-4435-a0e4-9cadbf97315f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2032e40b-b426-4625-b112-9be1f0ae0722" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-correlation-request-id": [ + "4d61b0d3-146a-420e-aa44-851800ec9fda" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T183151Z:4d61b0d3-146a-420e-aa44-851800ec9fda" + ], + "Date": [ + "Mon, 17 Oct 2022 18:31:50 GMT" + ], + "Content-Length": [ + "925" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "413bf1e4-f5ce-4b08-a19c-55226f7291e5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0dad19af-15d1-40d7-967b-2aa82330c140" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-correlation-request-id": [ + "f4bca97e-d2d5-4cdf-a18a-ff5f47f1c7f4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T183221Z:f4bca97e-d2d5-4cdf-a18a-ff5f47f1c7f4" + ], + "Date": [ + "Mon, 17 Oct 2022 18:32:21 GMT" + ], + "Content-Length": [ + "925" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1ea8d6c6-fe6f-4826-9480-68c4a8423f8e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "27433e3f-7bf1-4a36-9727-47521b34c69f" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-correlation-request-id": [ + "4eb6b80e-8342-4c7b-8917-383e5dad2ce7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T183252Z:4eb6b80e-8342-4c7b-8917-383e5dad2ce7" + ], + "Date": [ + "Mon, 17 Oct 2022 18:32:51 GMT" + ], + "Content-Length": [ + "959" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c7fad47a-e7ac-469c-bcd9-5e080b5bb7a2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "eeef3eea-a751-4805-a02c-1a1767b5f3cc" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "830c7899-6b64-4527-b6f4-3dd7c2773f9b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T183322Z:830c7899-6b64-4527-b6f4-3dd7c2773f9b" + ], + "Date": [ + "Mon, 17 Oct 2022 18:33:22 GMT" + ], + "Content-Length": [ + "960" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c13c3445-42bf-43d4-80a6-b11905157e03" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "53c80824-a4e0-4318-a79f-cf48a0a2f34a" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-correlation-request-id": [ + "212b17fa-5f0c-4d9f-b1a9-86ba191463ab" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T183323Z:212b17fa-5f0c-4d9f-b1a9-86ba191463ab" + ], + "Date": [ + "Mon, 17 Oct 2022 18:33:23 GMT" + ], + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Scaling\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5c5b7b7b-24a1-41b0-b5dd-d36bf2a89ec4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "745999e6-8bc1-4ba8-8073-6fcc1f17fd17" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-correlation-request-id": [ + "cfc1a45a-ca33-4841-9052-c3ef67603f5f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T183354Z:cfc1a45a-ca33-4841-9052-c3ef67603f5f" + ], + "Date": [ + "Mon, 17 Oct 2022 18:33:53 GMT" + ], + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Scaling\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "38a95e11-e607-4046-866d-a18c03df9a3c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3de5424d-088f-4e45-ab76-543d9023f4ad" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-correlation-request-id": [ + "7bf59eb7-79c1-4402-b891-b46394fd9448" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T183424Z:7bf59eb7-79c1-4402-b891-b46394fd9448" + ], + "Date": [ + "Mon, 17 Oct 2022 18:34:24 GMT" + ], + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Scaling\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d7ae342-1594-4f8d-997d-ec628f208841" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "372a20da-1241-4527-ade5-f47901daa4ac" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-correlation-request-id": [ + "f765c65c-d257-4aaf-96f2-2eac640cdabc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T183454Z:f765c65c-d257-4aaf-96f2-2eac640cdabc" + ], + "Date": [ + "Mon, 17 Oct 2022 18:34:54 GMT" + ], + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Scaling\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8c0f8af4-aadd-453d-86a2-cd66fbe26595" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d0240797-5d6a-4ee4-8018-eeb548041ae5" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-correlation-request-id": [ + "363ed4c3-018a-4c9d-90e9-4b7c1a39645d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T183524Z:363ed4c3-018a-4c9d-90e9-4b7c1a39645d" + ], + "Date": [ + "Mon, 17 Oct 2022 18:35:24 GMT" + ], + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Scaling\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5d0c551b-c381-4f8a-8578-243908306cf4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a62860f7-fc92-4917-82b0-00c1e59e6cb7" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-correlation-request-id": [ + "a9cb3c1b-cbe2-4b9d-b7d4-49aa2267ec0a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T183555Z:a9cb3c1b-cbe2-4b9d-b7d4-49aa2267ec0a" + ], + "Date": [ + "Mon, 17 Oct 2022 18:35:54 GMT" + ], + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Scaling\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6837031f-4ffd-4bb0-99ba-f5da11f00820" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "65199b20-7bd9-4c3c-a6e8-e657526716e0" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-correlation-request-id": [ + "cd8574da-74aa-40c7-b1a6-7f915f2b5a64" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T183625Z:cd8574da-74aa-40c7-b1a6-7f915f2b5a64" + ], + "Date": [ + "Mon, 17 Oct 2022 18:36:25 GMT" + ], + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Scaling\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c1e2644d-1b54-4b69-b58e-9dcd5d3c184f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "aa158269-e692-4cd9-aa82-93ada3aa90c4" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-correlation-request-id": [ + "6937e143-1aa2-400c-880c-d0ac4c51af14" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T183655Z:6937e143-1aa2-400c-880c-d0ac4c51af14" + ], + "Date": [ + "Mon, 17 Oct 2022 18:36:55 GMT" + ], + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Scaling\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "143b946b-8573-41e2-bfb1-63009e893e5a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "95890ef1-8963-4593-93c5-64d1a579f44d" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-correlation-request-id": [ + "40942881-11e3-4025-97d5-ee3b4cdfad2d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T183726Z:40942881-11e3-4025-97d5-ee3b4cdfad2d" + ], + "Date": [ + "Mon, 17 Oct 2022 18:37:25 GMT" + ], + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Scaling\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c8b0f0b5-6da0-4b59-b008-c3969843b54c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "fb7ea643-0860-4a5b-aaf2-71e259e6041e" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-correlation-request-id": [ + "f769c3ec-b0d2-4269-834f-35544d619401" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T183756Z:f769c3ec-b0d2-4269-834f-35544d619401" + ], + "Date": [ + "Mon, 17 Oct 2022 18:37:55 GMT" + ], + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Scaling\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2276ad9e-7d85-4d5a-a646-d59545aa8bab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8cb95109-9d88-4c30-8d83-5434c13be797" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-correlation-request-id": [ + "e7abc5f3-48e2-45bd-b289-dcd17d3079c4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T183826Z:e7abc5f3-48e2-45bd-b289-dcd17d3079c4" + ], + "Date": [ + "Mon, 17 Oct 2022 18:38:25 GMT" + ], + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Scaling\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "439cc83b-c6de-4f8f-8986-1172d73c9e61" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0b9e4bc0-998f-4221-b4f2-48b53d9f39d2" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "bf3be1e9-0d69-499b-afbc-5e036ccc29d3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T183856Z:bf3be1e9-0d69-499b-afbc-5e036ccc29d3" + ], + "Date": [ + "Mon, 17 Oct 2022 18:38:56 GMT" + ], + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Scaling\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44ed0051-85c0-4165-9e5a-b6892c4bf316" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "028a7c8d-32b5-4a6c-aba7-9794e15ebd48" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-correlation-request-id": [ + "4ff4b7d3-17e2-4986-bf58-5889d83a7144" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T183927Z:4ff4b7d3-17e2-4986-bf58-5889d83a7144" + ], + "Date": [ + "Mon, 17 Oct 2022 18:39:26 GMT" + ], + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Scaling\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a40f0a90-7379-49be-8619-04f1d4d0ca29" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0c34a065-7fb4-4cb9-8cab-dd3f988d65bf" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-correlation-request-id": [ + "3176babb-9ddf-428c-9a24-bed061aca516" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T183957Z:3176babb-9ddf-428c-9a24-bed061aca516" + ], + "Date": [ + "Mon, 17 Oct 2022 18:39:56 GMT" + ], + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Scaling\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5271aa3f-ddfc-4e4f-8b3e-f920da42aec6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "85055675-1a21-4fd1-98d5-3ab67e9a4437" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "x-ms-correlation-request-id": [ + "2d849bec-98b0-4abd-9a30-266cc48ba530" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T184028Z:2d849bec-98b0-4abd-9a30-266cc48ba530" + ], + "Date": [ + "Mon, 17 Oct 2022 18:40:27 GMT" + ], + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Scaling\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a4151f71-4e75-4978-8a34-6025e7621825" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "44cb3480-3277-417d-b3d7-765a2cf34039" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-correlation-request-id": [ + "b5c365c3-af7a-4863-94d7-ba3e5485a445" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T184058Z:b5c365c3-af7a-4863-94d7-ba3e5485a445" + ], + "Date": [ + "Mon, 17 Oct 2022 18:40:58 GMT" + ], + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Scaling\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5534b541-fdc8-4a05-861a-1187c942b2ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7b72dfe8-275b-497e-b940-eefb92a7716e" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" + ], + "x-ms-correlation-request-id": [ + "27519935-e2e7-4fa6-9993-2489e6300b52" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T184128Z:27519935-e2e7-4fa6-9993-2489e6300b52" + ], + "Date": [ + "Mon, 17 Oct 2022 18:41:27 GMT" + ], + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Scaling\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7351a00c-dab6-4417-84e6-81555ee51751" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d94cd306-b899-4666-b64e-14c784f1bde1" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-correlation-request-id": [ + "ce46c257-d6bd-422e-ad95-ad1fead123df" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T184158Z:ce46c257-d6bd-422e-ad95-ad1fead123df" + ], + "Date": [ + "Mon, 17 Oct 2022 18:41:57 GMT" + ], + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Scaling\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "20b23377-68d6-41ad-899d-e302f5f7c4f3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bd59bc82-c3d7-4717-975e-825eb939ea0e" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "x-ms-correlation-request-id": [ + "650c0ec1-2837-4e50-850e-4e283b762e33" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T184231Z:650c0ec1-2837-4e50-850e-4e283b762e33" + ], + "Date": [ + "Mon, 17 Oct 2022 18:42:30 GMT" + ], + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Scaling\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c6221ffd-62dc-46f8-996e-dd14ceb68a86" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b2dcb799-5196-4f57-8dbd-0ee7beb59449" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-correlation-request-id": [ + "fc13fd80-d0c0-49f0-a74a-9d3715bbb90d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T184301Z:fc13fd80-d0c0-49f0-a74a-9d3715bbb90d" + ], + "Date": [ + "Mon, 17 Oct 2022 18:43:00 GMT" + ], + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Scaling\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b79c3ac7-1363-4690-9833-9dc2e367c9f4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "317ec882-0390-444f-abce-551478037bd2" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], + "x-ms-correlation-request-id": [ + "5a106f59-1411-4f0b-96be-f4a9a41881f9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T184331Z:5a106f59-1411-4f0b-96be-f4a9a41881f9" + ], + "Date": [ + "Mon, 17 Oct 2022 18:43:31 GMT" + ], + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Scaling\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c9ac31ee-81a5-4565-8ef4-3d475b965471" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a67ed25c-f926-423c-beb1-c322a603a598" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" + ], + "x-ms-correlation-request-id": [ + "cfe82d0c-783d-435c-84da-610f2467ed71" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T184401Z:cfe82d0c-783d-435c-84da-610f2467ed71" + ], + "Date": [ + "Mon, 17 Oct 2022 18:44:01 GMT" + ], + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Scaling\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5b095542-071e-4598-9a8e-5232f3aada0b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "befbac28-1bd0-4723-ad8a-e2bfadf736b5" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11953" + ], + "x-ms-correlation-request-id": [ + "f27d0cd4-2aaa-461c-9e88-a49e67f6ac8f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T184432Z:f27d0cd4-2aaa-461c-9e88-a49e67f6ac8f" + ], + "Date": [ + "Mon, 17 Oct 2022 18:44:31 GMT" + ], + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Scaling\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b0995094-2d4c-4bb9-bb6c-3791eac6b336" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e6ad9e81-da1a-40ec-b020-5ae1e280d014" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11952" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "457ca388-0ace-4be7-a1c1-4c9deec50208" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T184502Z:457ca388-0ace-4be7-a1c1-4c9deec50208" + ], + "Date": [ + "Mon, 17 Oct 2022 18:45:01 GMT" + ], + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Scaling\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "698e7623-c398-464d-b068-2ea210c63cfe" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5bb9d3a1-6bef-4e4a-97c6-1f4981ddd394" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11951" + ], + "x-ms-correlation-request-id": [ + "2d7bd3ae-3e0e-491c-af94-da8f7b40d416" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T184532Z:2d7bd3ae-3e0e-491c-af94-da8f7b40d416" + ], + "Date": [ + "Mon, 17 Oct 2022 18:45:32 GMT" + ], + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Scaling\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dbd51019-cadf-46ae-9746-f888d1f10289" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cc819fcb-dd51-4bea-9a27-b52edb304a11" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11950" + ], + "x-ms-correlation-request-id": [ + "a4207f98-d8e4-4cfe-bd34-9ec065cec64d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T184602Z:a4207f98-d8e4-4cfe-bd34-9ec065cec64d" + ], + "Date": [ + "Mon, 17 Oct 2022 18:46:02 GMT" + ], + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Scaling\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0922761e-2b9d-42fb-8659-6c4184f6f76d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "dd7e7e2b-f717-47a5-92a6-04567c844f31" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11949" + ], + "x-ms-correlation-request-id": [ + "629f2ff9-9bf7-4278-9d46-9e4e61e21a31" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T184632Z:629f2ff9-9bf7-4278-9d46-9e4e61e21a31" + ], + "Date": [ + "Mon, 17 Oct 2022 18:46:32 GMT" + ], + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Scaling\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "370ee475-d1eb-4623-8887-1519855b489e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8a4a0762-f011-4335-8f3f-34e968349e2d" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11948" + ], + "x-ms-correlation-request-id": [ + "2a9cda8d-1039-4717-bfd1-04eee1ac9069" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T184703Z:2a9cda8d-1039-4717-bfd1-04eee1ac9069" + ], + "Date": [ + "Mon, 17 Oct 2022 18:47:03 GMT" + ], + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Scaling\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bb0c4155-43c4-4125-a0dd-5602aa8db1cc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e6c500aa-c49d-4122-a61f-eb63b0eb9761" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11947" + ], + "x-ms-correlation-request-id": [ + "1b2c02e4-59b0-401a-a058-678d3c1c0426" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T184733Z:1b2c02e4-59b0-401a-a058-678d3c1c0426" + ], + "Date": [ + "Mon, 17 Oct 2022 18:47:32 GMT" + ], + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Scaling\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "97e102b5-6332-4de4-b9a3-e9cbde65d735" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0f91fa91-ef8a-4921-b96e-217363a826a4" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11946" + ], + "x-ms-correlation-request-id": [ + "eab99867-1220-4141-96bf-73f16fca27f7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T184803Z:eab99867-1220-4141-96bf-73f16fca27f7" + ], + "Date": [ + "Mon, 17 Oct 2022 18:48:03 GMT" + ], + "Content-Length": [ + "958" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Scaling\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e6bff5d6-c0c6-4d46-9806-1d33733212d9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a064665d-1946-4d5f-b763-d0a739a799bb" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11945" + ], + "x-ms-correlation-request-id": [ + "9bfd8a5a-1210-4493-b5be-9bf169d51158" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T184833Z:9bfd8a5a-1210-4493-b5be-9bf169d51158" + ], + "Date": [ + "Mon, 17 Oct 2022 18:48:32 GMT" + ], + "Content-Length": [ + "964" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 2\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"1449\",\r\n \"maxclients\": \"15000\",\r\n \"maxfragmentationmemory-reserved\": \"1328\",\r\n \"maxmemory-delta\": \"1449\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\"\r\n },\r\n \"redisVersion\": \"latest\",\r\n \"replicasPerMaster\": 2,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 2\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "378be240-ddcc-4bb3-bb08-e6e980e45f3b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "325" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/168e2172-d215-4605-ade6-f070497174e3?api-version=2022-06-01" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/168e2172-d215-4605-ade6-f070497174e3?api-version=2022-06-01" + ], + "x-ms-request-id": [ + "168e2172-d215-4605-ade6-f070497174e3" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "39fec2bd-ff19-404b-85fd-323c1dfbd284" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T183323Z:39fec2bd-ff19-404b-85fd-323c1dfbd284" + ], + "Date": [ + "Mon, 17 Oct 2022 18:33:23 GMT" + ], + "Content-Length": [ + "1369" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/Redis/RedisBegin6497\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6497\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Scaling\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"700\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"700\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6497.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin1916/providers/Microsoft.Cache/redis/RedisBegin6497?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4xOTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjY0OTc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "042134e8-70f9-4818-a27b-65d6ae801210" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/e2aa8cdf-7da4-4718-af93-c2c33d5b04e8?api-version=2022-06-01" + ], + "x-ms-request-id": [ + "e2aa8cdf-7da4-4718-af93-c2c33d5b04e8" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "33a91105-cac8-4374-8fe8-908bfcdab1ed" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T184834Z:33a91105-cac8-4374-8fe8-908bfcdab1ed" + ], + "Date": [ + "Mon, 17 Oct 2022 18:48:33 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/e2aa8cdf-7da4-4718-af93-c2c33d5b04e8?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2UyYWE4Y2RmLTdkYTQtNDcxOC1hZjkzLWMyYzMzZDViMDRlOD9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/e2aa8cdf-7da4-4718-af93-c2c33d5b04e8?api-version=2022-06-01" + ], + "x-ms-request-id": [ + "f3fb83d9-d0cf-4029-af73-837f902e4217" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11944" + ], + "x-ms-correlation-request-id": [ + "2896a3d0-2684-4c08-9017-85df623fb84c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T184904Z:2896a3d0-2684-4c08-9017-85df623fb84c" + ], + "Date": [ + "Mon, 17 Oct 2022 18:49:03 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/e2aa8cdf-7da4-4718-af93-c2c33d5b04e8?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2UyYWE4Y2RmLTdkYTQtNDcxOC1hZjkzLWMyYzMzZDViMDRlOD9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/e2aa8cdf-7da4-4718-af93-c2c33d5b04e8?api-version=2022-06-01" + ], + "x-ms-request-id": [ + "87d5b68c-313f-4e1b-8061-cec4480f2553" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11943" + ], + "x-ms-correlation-request-id": [ + "e00e75a7-8201-4906-874c-7520329f714b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T184934Z:e00e75a7-8201-4906-874c-7520329f714b" + ], + "Date": [ + "Mon, 17 Oct 2022 18:49:34 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/e2aa8cdf-7da4-4718-af93-c2c33d5b04e8?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2UyYWE4Y2RmLTdkYTQtNDcxOC1hZjkzLWMyYzMzZDViMDRlOD9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/e2aa8cdf-7da4-4718-af93-c2c33d5b04e8?api-version=2022-06-01" + ], + "x-ms-request-id": [ + "059e8543-6fe2-44e8-a26d-04a1c3a75355" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11942" + ], + "x-ms-correlation-request-id": [ + "1dc92562-d053-4b2e-bee7-36c3588184c4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T185004Z:1dc92562-d053-4b2e-bee7-36c3588184c4" + ], + "Date": [ + "Mon, 17 Oct 2022 18:50:04 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/e2aa8cdf-7da4-4718-af93-c2c33d5b04e8?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2UyYWE4Y2RmLTdkYTQtNDcxOC1hZjkzLWMyYzMzZDViMDRlOD9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/e2aa8cdf-7da4-4718-af93-c2c33d5b04e8?api-version=2022-06-01" + ], + "x-ms-request-id": [ + "e0af76d2-e3ff-4d02-990c-ab48765a4a89" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11941" + ], + "x-ms-correlation-request-id": [ + "1e10f160-9d2e-4dac-b1ae-000f88fc6565" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T185034Z:1e10f160-9d2e-4dac-b1ae-000f88fc6565" + ], + "Date": [ + "Mon, 17 Oct 2022 18:50:33 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/e2aa8cdf-7da4-4718-af93-c2c33d5b04e8?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2UyYWE4Y2RmLTdkYTQtNDcxOC1hZjkzLWMyYzMzZDViMDRlOD9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/e2aa8cdf-7da4-4718-af93-c2c33d5b04e8?api-version=2022-06-01" + ], + "x-ms-request-id": [ + "3819c012-05c9-4c83-bb24-530acf4298c0" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11940" + ], + "x-ms-correlation-request-id": [ + "420201fd-a81c-46d4-909a-8b6bee97a0db" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T185104Z:420201fd-a81c-46d4-909a-8b6bee97a0db" + ], + "Date": [ + "Mon, 17 Oct 2022 18:51:03 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/e2aa8cdf-7da4-4718-af93-c2c33d5b04e8?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2UyYWE4Y2RmLTdkYTQtNDcxOC1hZjkzLWMyYzMzZDViMDRlOD9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/e2aa8cdf-7da4-4718-af93-c2c33d5b04e8?api-version=2022-06-01" + ], + "x-ms-request-id": [ + "87b09bb0-a22a-496f-9da2-cb07b5bae0b5" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11939" + ], + "x-ms-correlation-request-id": [ + "c5246614-6cd3-4144-9ab2-036265b26a87" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T185134Z:c5246614-6cd3-4144-9ab2-036265b26a87" + ], + "Date": [ + "Mon, 17 Oct 2022 18:51:34 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/e2aa8cdf-7da4-4718-af93-c2c33d5b04e8?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2UyYWE4Y2RmLTdkYTQtNDcxOC1hZjkzLWMyYzMzZDViMDRlOD9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/e2aa8cdf-7da4-4718-af93-c2c33d5b04e8?api-version=2022-06-01" + ], + "x-ms-request-id": [ + "e3529774-6825-45dd-b666-11b8733d9b05" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11938" + ], + "x-ms-correlation-request-id": [ + "2968ae4b-49ea-4642-ade2-c480b671ed6f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T185204Z:2968ae4b-49ea-4642-ade2-c480b671ed6f" + ], + "Date": [ + "Mon, 17 Oct 2022 18:52:04 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/e2aa8cdf-7da4-4718-af93-c2c33d5b04e8?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2UyYWE4Y2RmLTdkYTQtNDcxOC1hZjkzLWMyYzMzZDViMDRlOD9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "125cfa18-752c-466c-b84e-e9d822635fee" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11937" + ], + "x-ms-correlation-request-id": [ + "950e79c8-9add-41a2-8c8b-39a4bc742d30" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T185234Z:950e79c8-9add-41a2-8c8b-39a4bc742d30" + ], + "Date": [ + "Mon, 17 Oct 2022 18:52:34 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/e2aa8cdf-7da4-4718-af93-c2c33d5b04e8?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2UyYWE4Y2RmLTdkYTQtNDcxOC1hZjkzLWMyYzMzZDViMDRlOD9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b8be0f66-2564-4f80-9924-7773c1a2045c" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11936" + ], + "x-ms-correlation-request-id": [ + "c7f7808d-f561-4ccb-a706-2ba1a114bf23" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T185234Z:c7f7808d-f561-4ccb-a706-2ba1a114bf23" + ], + "Date": [ + "Mon, 17 Oct 2022 18:52:34 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/RedisBegin1916?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlZ3JvdXBzL1JlZGlzQmVnaW4xOTE2P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c375eac6-cfef-41f0-8886-c4a6e369fd08" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0JFR0lOMTkxNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "e4992a84-9702-4863-83fb-70facd9ee5a1" + ], + "x-ms-correlation-request-id": [ + "e4992a84-9702-4863-83fb-70facd9ee5a1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T185236Z:e4992a84-9702-4863-83fb-70facd9ee5a1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 17 Oct 2022 18:52:36 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0JFR0lOMTkxNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlVSSlUwSkZSMGxPTVRreE5pMVhSVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "195749fe-fb57-4d75-89d2-f2b751f77c84" + ], + "x-ms-correlation-request-id": [ + "195749fe-fb57-4d75-89d2-f2b751f77c84" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T185251Z:195749fe-fb57-4d75-89d2-f2b751f77c84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 17 Oct 2022 18:52:51 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0JFR0lOMTkxNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlVSSlUwSkZSMGxPTVRreE5pMVhSVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "0ba8e842-81d2-409c-83b6-380b7403a8a5" + ], + "x-ms-correlation-request-id": [ + "0ba8e842-81d2-409c-83b6-380b7403a8a5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T185251Z:0ba8e842-81d2-409c-83b6-380b7403a8a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 17 Oct 2022 18:52:51 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "BeginCreateBeginUpdateFunctionalTest": [ + "RedisBegin1916", + "RedisBegin6497" + ] + }, + "Variables": { + "SubscriptionId": "3919658b-68ae-4509-8c17-6a2238340ae7" + } +} \ No newline at end of file diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/BeginCreateFunctionalTests/BeginCreateFunctionalTest.json b/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/BeginCreateFunctionalTests/BeginCreateFunctionalTest.json deleted file mode 100644 index 8729c4f86e55..000000000000 --- a/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/BeginCreateFunctionalTests/BeginCreateFunctionalTest.json +++ /dev/null @@ -1,3238 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/register?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "048f07d4-d02c-4ea9-aa8f-9081d7130690" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "b57a9741-ad13-4449-8a50-9bde78b39088" - ], - "x-ms-correlation-request-id": [ - "b57a9741-ad13-4449-8a50-9bde78b39088" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T160225Z:b57a9741-ad13-4449-8a50-9bde78b39088" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 16 Dec 2021 16:02:24 GMT" - ], - "Content-Length": [ - "13868" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateLinkResources\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateLinkResources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise/databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/EventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"France South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ee31235e-2434-44ee-9203-b034ac6f122b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-request-id": [ - "b4193dbc-1e02-4182-a69f-8ccce7833e19" - ], - "x-ms-correlation-request-id": [ - "b4193dbc-1e02-4182-a69f-8ccce7833e19" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T160225Z:b4193dbc-1e02-4182-a69f-8ccce7833e19" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 16 Dec 2021 16:02:25 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "13868" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateLinkResources\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateLinkResources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise/databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/EventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"France South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/RedisBegin8912?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlZ3JvdXBzL1JlZGlzQmVnaW44OTEyP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d8c515b6-9fb3-49fe-940f-15aa64151302" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "29" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "5e16d89a-78e3-44d8-8764-8c25914a0aed" - ], - "x-ms-correlation-request-id": [ - "5e16d89a-78e3-44d8-8764-8c25914a0aed" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T160227Z:5e16d89a-78e3-44d8-8764-8c25914a0aed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 16 Dec 2021 16:02:26 GMT" - ], - "Content-Length": [ - "181" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912\",\r\n \"name\": \"RedisBegin8912\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/RedisBegin8912?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlZ3JvdXBzL1JlZGlzQmVnaW44OTEyP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6e603edd-9d40-4671-8921-67611bac6aaf" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-request-id": [ - "7ae2df2f-7742-4294-9b8d-a7d9ea5fe160" - ], - "x-ms-correlation-request-id": [ - "7ae2df2f-7742-4294-9b8d-a7d9ea5fe160" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T160227Z:7ae2df2f-7742-4294-9b8d-a7d9ea5fe160" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 16 Dec 2021 16:02:26 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "181" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912\",\r\n \"name\": \"RedisBegin8912\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/redis/RedisBegin4030?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW44OTEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjQwMzA/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"210\"\r\n },\r\n \"redisVersion\": \"6\",\r\n \"replicasPerMaster\": 2,\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c625c965-d028-4b6c-9bd9-e695a40a2f21" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "346" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/redis/RedisBegin4030?api-version=2021-06-01" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/2c3db217-1d90-48c8-be23-d19ae7d88699?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "2c3db217-1d90-48c8-be23-d19ae7d88699" - ], - "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-correlation-request-id": [ - "796f7dd6-32e2-41a3-9be7-aa12f48ba11b" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T160232Z:796f7dd6-32e2-41a3-9be7-aa12f48ba11b" - ], - "Date": [ - "Thu, 16 Dec 2021 16:02:31 GMT" - ], - "Content-Length": [ - "1449" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/Redis/RedisBegin4030\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin4030\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"210\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"210\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"*****\",\r\n \"secondaryKey\": \"******\"\r\n },\r\n \"hostName\": \"RedisBegin4030.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/redis/RedisBegin4030?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW44OTEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjQwMzA/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4c4c1378-61f4-4853-9b63-2a52e2f48b51" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "524a024c-19fb-4261-9639-d9ca7fd75b70" - ], - "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "ff336a1f-e24b-4c44-8653-125c9078b9ba" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T160232Z:ff336a1f-e24b-4c44-8653-125c9078b9ba" - ], - "Date": [ - "Thu, 16 Dec 2021 16:02:31 GMT" - ], - "Content-Length": [ - "928" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/Redis/RedisBegin4030\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin4030\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"210\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"210\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin4030.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/redis/RedisBegin4030?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW44OTEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjQwMzA/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55114f4b-6eb0-4dd8-a688-a9d60f5fe65d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "34ea35e8-0fb4-4cbd-8b78-9e27c06c9813" - ], - "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-correlation-request-id": [ - "033d2fab-1738-40ff-912d-f2fcaecfb6c3" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T160303Z:033d2fab-1738-40ff-912d-f2fcaecfb6c3" - ], - "Date": [ - "Thu, 16 Dec 2021 16:03:02 GMT" - ], - "Content-Length": [ - "928" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/Redis/RedisBegin4030\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin4030\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"210\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"210\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin4030.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/redis/RedisBegin4030?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW44OTEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjQwMzA/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "890fdf95-afea-4812-b91a-983a93d9bbe4" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "2cd33786-8b03-44e8-8ca2-d76e37ed0673" - ], - "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-correlation-request-id": [ - "82ef667a-4385-46bc-a353-0104cf0631d6" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T160333Z:82ef667a-4385-46bc-a353-0104cf0631d6" - ], - "Date": [ - "Thu, 16 Dec 2021 16:03:32 GMT" - ], - "Content-Length": [ - "928" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/Redis/RedisBegin4030\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin4030\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"210\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"210\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin4030.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/redis/RedisBegin4030?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW44OTEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjQwMzA/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9b6ddf9d-fa4a-4572-9f85-a5f5a9b4cc29" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "37885599-6f77-4205-a3c1-3d552f7dde5e" - ], - "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-correlation-request-id": [ - "c7781fff-3c6e-491d-b43b-b1af5b2c76e3" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T160403Z:c7781fff-3c6e-491d-b43b-b1af5b2c76e3" - ], - "Date": [ - "Thu, 16 Dec 2021 16:04:03 GMT" - ], - "Content-Length": [ - "928" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/Redis/RedisBegin4030\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin4030\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"210\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"210\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin4030.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/redis/RedisBegin4030?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW44OTEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjQwMzA/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6e946a88-6196-4b5f-9f5e-2935ec177858" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "cec91d64-8e7e-4e40-aa3b-3c530ca395ed" - ], - "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-correlation-request-id": [ - "4094d190-b96a-41da-94e1-c224b2e8ee81" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T160434Z:4094d190-b96a-41da-94e1-c224b2e8ee81" - ], - "Date": [ - "Thu, 16 Dec 2021 16:04:33 GMT" - ], - "Content-Length": [ - "928" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/Redis/RedisBegin4030\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin4030\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"210\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"210\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin4030.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/redis/RedisBegin4030?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW44OTEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjQwMzA/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "645fd1a0-a169-4ce6-b97f-3ae823dd8866" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "cdd35155-576c-418b-8032-ccb66cbad064" - ], - "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-correlation-request-id": [ - "83e1cbf6-53d4-41c3-9f44-d0f64f7689d3" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T160504Z:83e1cbf6-53d4-41c3-9f44-d0f64f7689d3" - ], - "Date": [ - "Thu, 16 Dec 2021 16:05:04 GMT" - ], - "Content-Length": [ - "928" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/Redis/RedisBegin4030\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin4030\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"210\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"210\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin4030.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/redis/RedisBegin4030?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW44OTEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjQwMzA/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "149960c2-8529-4f62-b2e7-78793eedcd38" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "14555729-902f-4dd6-9af6-aac1bd3cb7f6" - ], - "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-correlation-request-id": [ - "f378d3ce-5861-4007-8855-be7a8a0d5a83" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T160534Z:f378d3ce-5861-4007-8855-be7a8a0d5a83" - ], - "Date": [ - "Thu, 16 Dec 2021 16:05:34 GMT" - ], - "Content-Length": [ - "928" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/Redis/RedisBegin4030\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin4030\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"210\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"210\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin4030.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/redis/RedisBegin4030?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW44OTEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjQwMzA/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "65d64a47-0027-4cb9-afd6-e239b8c48394" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7adc3d17-9ab6-47e6-b27b-5fb94562a825" - ], - "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-correlation-request-id": [ - "80ace751-08c4-44c0-8781-c61f09624d55" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T160605Z:80ace751-08c4-44c0-8781-c61f09624d55" - ], - "Date": [ - "Thu, 16 Dec 2021 16:06:05 GMT" - ], - "Content-Length": [ - "928" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/Redis/RedisBegin4030\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin4030\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"210\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"210\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin4030.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/redis/RedisBegin4030?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW44OTEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjQwMzA/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "db7ab4c2-1785-4ca2-8f1b-0bdc121c8065" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "534599dc-17b9-4bba-83cf-069dc7538962" - ], - "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-correlation-request-id": [ - "1d3bc0b8-2188-42f3-82c6-7c7234de8df8" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T160636Z:1d3bc0b8-2188-42f3-82c6-7c7234de8df8" - ], - "Date": [ - "Thu, 16 Dec 2021 16:06:35 GMT" - ], - "Content-Length": [ - "928" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/Redis/RedisBegin4030\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin4030\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"210\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"210\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin4030.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/redis/RedisBegin4030?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW44OTEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjQwMzA/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a7b4f233-3586-4578-9c8a-c8e1299c4357" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b45fc7b9-9ea7-4a92-8996-b99d7c80df4e" - ], - "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-correlation-request-id": [ - "10a23040-6ad0-4ed2-839b-c3fb6d73e7ce" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T160706Z:10a23040-6ad0-4ed2-839b-c3fb6d73e7ce" - ], - "Date": [ - "Thu, 16 Dec 2021 16:07:06 GMT" - ], - "Content-Length": [ - "928" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/Redis/RedisBegin4030\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin4030\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"210\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"210\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin4030.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/redis/RedisBegin4030?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW44OTEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjQwMzA/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a6ba6206-a48c-49a0-8930-c5b78cca3bd3" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ee401036-e367-486c-bc2f-db139f176ec8" - ], - "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "16b833fd-75ca-4d3c-b819-911316034384" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T160736Z:16b833fd-75ca-4d3c-b819-911316034384" - ], - "Date": [ - "Thu, 16 Dec 2021 16:07:36 GMT" - ], - "Content-Length": [ - "928" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/Redis/RedisBegin4030\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin4030\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"210\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"210\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin4030.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/redis/RedisBegin4030?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW44OTEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjQwMzA/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7293fa60-824f-4ced-bef0-91c5bc9f5e1e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "fd20cc63-2af7-4d70-a34e-941594b537cc" - ], - "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-correlation-request-id": [ - "4e0f3177-c6f3-4969-be09-b87860d055bf" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T160807Z:4e0f3177-c6f3-4969-be09-b87860d055bf" - ], - "Date": [ - "Thu, 16 Dec 2021 16:08:06 GMT" - ], - "Content-Length": [ - "928" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/Redis/RedisBegin4030\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin4030\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"210\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"210\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin4030.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/redis/RedisBegin4030?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW44OTEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjQwMzA/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a5ecfdd6-b49d-4986-a3af-1cf6341b9a44" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "299a8537-5d53-4bb4-a8a9-7eb5d3286294" - ], - "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-correlation-request-id": [ - "704acf67-d831-4ac6-8131-7e4bd5981d5e" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T160837Z:704acf67-d831-4ac6-8131-7e4bd5981d5e" - ], - "Date": [ - "Thu, 16 Dec 2021 16:08:37 GMT" - ], - "Content-Length": [ - "928" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/Redis/RedisBegin4030\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin4030\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"210\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"210\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin4030.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/redis/RedisBegin4030?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW44OTEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjQwMzA/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ee3f6285-1672-4362-852f-a558641453e8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "2cf36b95-dce2-49eb-bd7a-1047ca8c65c7" - ], - "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "x-ms-correlation-request-id": [ - "e18ef702-90ba-44af-8ff8-741a2e31b4ce" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T160907Z:e18ef702-90ba-44af-8ff8-741a2e31b4ce" - ], - "Date": [ - "Thu, 16 Dec 2021 16:09:07 GMT" - ], - "Content-Length": [ - "928" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/Redis/RedisBegin4030\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin4030\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"210\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"210\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin4030.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/redis/RedisBegin4030?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW44OTEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjQwMzA/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "44d0852a-01b7-4ab5-b48a-9998620b8ad4" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0cc37f52-6cb5-420b-be81-e33693e3a20a" - ], - "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "x-ms-correlation-request-id": [ - "80469955-cb59-4c50-aa7c-adfec3470145" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T160938Z:80469955-cb59-4c50-aa7c-adfec3470145" - ], - "Date": [ - "Thu, 16 Dec 2021 16:09:38 GMT" - ], - "Content-Length": [ - "964" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/Redis/RedisBegin4030\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin4030\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"210\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"210\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin4030.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/redis/RedisBegin4030?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW44OTEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjQwMzA/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "548a0810-504f-4368-a1fe-f4b589a521b5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f9bf9fc5-1d1d-4010-9544-fb81be34e6ae" - ], - "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" - ], - "x-ms-correlation-request-id": [ - "79632cb9-83ba-44c4-be91-743f1dfb7013" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T161009Z:79632cb9-83ba-44c4-be91-743f1dfb7013" - ], - "Date": [ - "Thu, 16 Dec 2021 16:10:08 GMT" - ], - "Content-Length": [ - "964" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/Redis/RedisBegin4030\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin4030\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"210\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"210\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin4030.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/redis/RedisBegin4030?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW44OTEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjQwMzA/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9ca70d99-0a94-4384-b3f9-f32f2dc3d157" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ca30bc93-68ab-4b30-9755-d99dbff0af26" - ], - "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" - ], - "x-ms-correlation-request-id": [ - "739adad0-e005-4241-b8fa-2355688b7f5a" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T161039Z:739adad0-e005-4241-b8fa-2355688b7f5a" - ], - "Date": [ - "Thu, 16 Dec 2021 16:10:38 GMT" - ], - "Content-Length": [ - "964" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/Redis/RedisBegin4030\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin4030\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"210\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"210\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin4030.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/redis/RedisBegin4030?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW44OTEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjQwMzA/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2ffbe9a9-e2f9-498c-a154-93e78d73a2ef" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "2f611f09-c277-4db4-a3b5-4dab9ed1361e" - ], - "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], - "x-ms-correlation-request-id": [ - "783ed9c4-5be8-44fa-b327-20e9e41f1f6f" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T161109Z:783ed9c4-5be8-44fa-b327-20e9e41f1f6f" - ], - "Date": [ - "Thu, 16 Dec 2021 16:11:09 GMT" - ], - "Content-Length": [ - "964" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/Redis/RedisBegin4030\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin4030\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"210\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"210\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin4030.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/redis/RedisBegin4030?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW44OTEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjQwMzA/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "20ed2c45-70a8-4a61-af6c-92ef4ae0e053" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e47908e2-07cd-4644-988b-52d8fb1fdfc6" - ], - "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" - ], - "x-ms-correlation-request-id": [ - "09cd2fd7-602e-42d7-8440-14d4db66388b" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T161140Z:09cd2fd7-602e-42d7-8440-14d4db66388b" - ], - "Date": [ - "Thu, 16 Dec 2021 16:11:39 GMT" - ], - "Content-Length": [ - "964" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/Redis/RedisBegin4030\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin4030\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"210\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"210\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin4030.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/redis/RedisBegin4030?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW44OTEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjQwMzA/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d31bc9f5-04ff-4d10-998f-ac73db311558" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7f446528-6d04-4961-be5f-d0a19d764491" - ], - "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" - ], - "x-ms-correlation-request-id": [ - "8d317453-b296-42e1-b4c3-0e4095ac65e9" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T161210Z:8d317453-b296-42e1-b4c3-0e4095ac65e9" - ], - "Date": [ - "Thu, 16 Dec 2021 16:12:10 GMT" - ], - "Content-Length": [ - "964" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/Redis/RedisBegin4030\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin4030\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"210\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"210\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin4030.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/redis/RedisBegin4030?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW44OTEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjQwMzA/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "91e353bb-2233-4c77-bcd3-3227f1ae95ce" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8a038083-c3da-4ec4-b1a3-c35c4400d841" - ], - "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" - ], - "x-ms-correlation-request-id": [ - "466d9026-bcda-4e76-b410-bf5165eeb6d7" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T161241Z:466d9026-bcda-4e76-b410-bf5165eeb6d7" - ], - "Date": [ - "Thu, 16 Dec 2021 16:12:40 GMT" - ], - "Content-Length": [ - "964" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/Redis/RedisBegin4030\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin4030\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"210\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"210\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin4030.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/redis/RedisBegin4030?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW44OTEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjQwMzA/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "69c5a3af-7610-45f4-8fc4-85f3d96455d7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "65b6d1be-f97d-4b89-9bdf-2b29f53d7b72" - ], - "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "91d4825b-177d-4a93-af14-cdec5f63373d" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T161311Z:91d4825b-177d-4a93-af14-cdec5f63373d" - ], - "Date": [ - "Thu, 16 Dec 2021 16:13:11 GMT" - ], - "Content-Length": [ - "964" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/Redis/RedisBegin4030\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin4030\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"210\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"210\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin4030.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/redis/RedisBegin4030?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW44OTEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjQwMzA/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d462981b-3f03-4028-b68b-71f08fa5b522" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "fdc1a776-19b8-4d24-8f82-713b02d05281" - ], - "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" - ], - "x-ms-correlation-request-id": [ - "a8fabcdd-73ca-498b-9e29-4e5f4b78531f" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T161342Z:a8fabcdd-73ca-498b-9e29-4e5f4b78531f" - ], - "Date": [ - "Thu, 16 Dec 2021 16:13:41 GMT" - ], - "Content-Length": [ - "964" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/Redis/RedisBegin4030\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin4030\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"210\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"210\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin4030.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/redis/RedisBegin4030?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW44OTEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjQwMzA/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1f23e65b-72d6-48f4-bd01-31e454e059ad" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "030b27af-330d-4972-8535-b030be2c89c8" - ], - "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" - ], - "x-ms-correlation-request-id": [ - "7fab043c-b049-44e2-9168-7cc993371555" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T161412Z:7fab043c-b049-44e2-9168-7cc993371555" - ], - "Date": [ - "Thu, 16 Dec 2021 16:14:12 GMT" - ], - "Content-Length": [ - "964" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/Redis/RedisBegin4030\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin4030\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"210\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"210\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin4030.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/redis/RedisBegin4030?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW44OTEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjQwMzA/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "279111f7-98f1-4d44-9dff-c9b5e9f33265" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "91d183d7-726d-4fa5-a7fb-2031443ba2de" - ], - "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" - ], - "x-ms-correlation-request-id": [ - "a9047aa5-3a89-4b5f-9126-470cded4312e" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T161443Z:a9047aa5-3a89-4b5f-9126-470cded4312e" - ], - "Date": [ - "Thu, 16 Dec 2021 16:14:42 GMT" - ], - "Content-Length": [ - "964" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/Redis/RedisBegin4030\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin4030\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"210\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"210\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin4030.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/redis/RedisBegin4030?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW44OTEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjQwMzA/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7600e763-3706-4344-a8af-ef7fe74237d8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "79344cf1-3aca-47ca-8c33-ccc1b1beb5fe" - ], - "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" - ], - "x-ms-correlation-request-id": [ - "3b42d49e-389e-440f-a25b-506e5f8ca521" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T161513Z:3b42d49e-389e-440f-a25b-506e5f8ca521" - ], - "Date": [ - "Thu, 16 Dec 2021 16:15:13 GMT" - ], - "Content-Length": [ - "962" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/Redis/RedisBegin4030\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin4030\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"210\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"210\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin4030.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/redis/RedisBegin4030?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW44OTEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjQwMzA/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "048e1163-0f04-4d68-9ad5-e0bba33b6c92" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4cbb3fec-81ee-4dbc-a370-f9d3afc2e241" - ], - "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" - ], - "x-ms-correlation-request-id": [ - "f92cd11c-f6ba-4c92-a153-d97670916893" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T161543Z:f92cd11c-f6ba-4c92-a153-d97670916893" - ], - "Date": [ - "Thu, 16 Dec 2021 16:15:43 GMT" - ], - "Content-Length": [ - "962" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/Redis/RedisBegin4030\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin4030\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"210\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"210\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin4030.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/redis/RedisBegin4030?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW44OTEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjQwMzA/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ad7cb627-3953-434b-9f4b-b00a9adef51e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "56ab32f4-1b70-41ba-9c26-695d00dacca0" - ], - "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" - ], - "x-ms-correlation-request-id": [ - "16d26f91-2cbd-4ca7-8ef2-06a8bb6b6fc4" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T161614Z:16d26f91-2cbd-4ca7-8ef2-06a8bb6b6fc4" - ], - "Date": [ - "Thu, 16 Dec 2021 16:16:14 GMT" - ], - "Content-Length": [ - "963" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/Redis/RedisBegin4030\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin4030\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"6.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"210\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"210\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin4030.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin8912/providers/Microsoft.Cache/redis/RedisBegin4030?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW44OTEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjQwMzA/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "43d8b681-f6e6-405f-82e7-fa614af66346" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/8aa60981-ec36-4143-9631-fe7b08243c05?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "8aa60981-ec36-4143-9631-fe7b08243c05" - ], - "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" - ], - "x-ms-correlation-request-id": [ - "3580af43-f998-4eda-bcc7-5ee063ee7de4" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T161614Z:3580af43-f998-4eda-bcc7-5ee063ee7de4" - ], - "Date": [ - "Thu, 16 Dec 2021 16:16:14 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/8aa60981-ec36-4143-9631-fe7b08243c05?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzhhYTYwOTgxLWVjMzYtNDE0My05NjMxLWZlN2IwODI0M2MwNT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/8aa60981-ec36-4143-9631-fe7b08243c05?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "b427a7af-41cc-4a4c-b220-c3fd20039b0d" - ], - "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" - ], - "x-ms-correlation-request-id": [ - "2e6546d9-a4d0-42b3-92f6-1e3ac6e25b08" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T161645Z:2e6546d9-a4d0-42b3-92f6-1e3ac6e25b08" - ], - "Date": [ - "Thu, 16 Dec 2021 16:16:44 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/8aa60981-ec36-4143-9631-fe7b08243c05?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzhhYTYwOTgxLWVjMzYtNDE0My05NjMxLWZlN2IwODI0M2MwNT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/8aa60981-ec36-4143-9631-fe7b08243c05?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "fa9e2ee6-0162-4630-b3fe-58ede8144c39" - ], - "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" - ], - "x-ms-correlation-request-id": [ - "95339662-ef58-4ac9-974f-8896f30c886e" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T161715Z:95339662-ef58-4ac9-974f-8896f30c886e" - ], - "Date": [ - "Thu, 16 Dec 2021 16:17:15 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/8aa60981-ec36-4143-9631-fe7b08243c05?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzhhYTYwOTgxLWVjMzYtNDE0My05NjMxLWZlN2IwODI0M2MwNT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/8aa60981-ec36-4143-9631-fe7b08243c05?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "100373bd-c896-428c-8bc7-de8b491da15f" - ], - "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" - ], - "x-ms-correlation-request-id": [ - "f982baef-4c7d-482f-8906-ec645f15525d" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T161745Z:f982baef-4c7d-482f-8906-ec645f15525d" - ], - "Date": [ - "Thu, 16 Dec 2021 16:17:45 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/8aa60981-ec36-4143-9631-fe7b08243c05?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzhhYTYwOTgxLWVjMzYtNDE0My05NjMxLWZlN2IwODI0M2MwNT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/8aa60981-ec36-4143-9631-fe7b08243c05?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "d8864bdb-2f39-430f-a0a8-b418140cca09" - ], - "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" - ], - "x-ms-correlation-request-id": [ - "4c537afb-96d0-48a8-9638-ec4aa0e2ff61" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T161816Z:4c537afb-96d0-48a8-9638-ec4aa0e2ff61" - ], - "Date": [ - "Thu, 16 Dec 2021 16:18:16 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/8aa60981-ec36-4143-9631-fe7b08243c05?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzhhYTYwOTgxLWVjMzYtNDE0My05NjMxLWZlN2IwODI0M2MwNT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/8aa60981-ec36-4143-9631-fe7b08243c05?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "f9d7998e-f03c-4ad1-ad25-fe651f4b2fc8" - ], - "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "ecd410c3-4c1f-4cdb-9191-7e369b049a1a" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T161846Z:ecd410c3-4c1f-4cdb-9191-7e369b049a1a" - ], - "Date": [ - "Thu, 16 Dec 2021 16:18:45 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/8aa60981-ec36-4143-9631-fe7b08243c05?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzhhYTYwOTgxLWVjMzYtNDE0My05NjMxLWZlN2IwODI0M2MwNT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/8aa60981-ec36-4143-9631-fe7b08243c05?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "df3e1733-66f2-445e-9b35-4b84a2af4120" - ], - "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" - ], - "x-ms-correlation-request-id": [ - "468399e2-5d5d-43b9-a0a2-45f485a3724b" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T161916Z:468399e2-5d5d-43b9-a0a2-45f485a3724b" - ], - "Date": [ - "Thu, 16 Dec 2021 16:19:16 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/8aa60981-ec36-4143-9631-fe7b08243c05?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzhhYTYwOTgxLWVjMzYtNDE0My05NjMxLWZlN2IwODI0M2MwNT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/8aa60981-ec36-4143-9631-fe7b08243c05?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "722b7bc2-893a-49b3-a0be-93a4d0ae162f" - ], - "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" - ], - "x-ms-correlation-request-id": [ - "ed58ef8a-28f6-4598-bfdb-7989d36d16ef" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T161947Z:ed58ef8a-28f6-4598-bfdb-7989d36d16ef" - ], - "Date": [ - "Thu, 16 Dec 2021 16:19:47 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/8aa60981-ec36-4143-9631-fe7b08243c05?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzhhYTYwOTgxLWVjMzYtNDE0My05NjMxLWZlN2IwODI0M2MwNT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/8aa60981-ec36-4143-9631-fe7b08243c05?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "65e0a862-d23b-4d32-b99e-45b180cf74cc" - ], - "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" - ], - "x-ms-correlation-request-id": [ - "107d6acc-f027-4751-8d05-b68d94dbf681" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T162017Z:107d6acc-f027-4751-8d05-b68d94dbf681" - ], - "Date": [ - "Thu, 16 Dec 2021 16:20:17 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/8aa60981-ec36-4143-9631-fe7b08243c05?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzhhYTYwOTgxLWVjMzYtNDE0My05NjMxLWZlN2IwODI0M2MwNT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4ca0bbfd-a020-4d29-a810-b2a54cfcdc8f" - ], - "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" - ], - "x-ms-correlation-request-id": [ - "65fbcd9c-573e-41c9-a786-9da49e7208fc" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T162047Z:65fbcd9c-573e-41c9-a786-9da49e7208fc" - ], - "Date": [ - "Thu, 16 Dec 2021 16:20:47 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/8aa60981-ec36-4143-9631-fe7b08243c05?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzhhYTYwOTgxLWVjMzYtNDE0My05NjMxLWZlN2IwODI0M2MwNT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "3da2173b-849f-4a6a-a430-1a937216d4f8" - ], - "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" - ], - "x-ms-correlation-request-id": [ - "12809cec-903d-4e22-b4e2-229228f6fce3" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T162048Z:12809cec-903d-4e22-b4e2-229228f6fce3" - ], - "Date": [ - "Thu, 16 Dec 2021 16:20:47 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/RedisBegin8912?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlZ3JvdXBzL1JlZGlzQmVnaW44OTEyP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "27435d87-47c0-4392-ab4c-926cae36227c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0JFR0lOODkxMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" - ], - "x-ms-request-id": [ - "d8668156-85b5-4162-b97b-ad000d2e7fb7" - ], - "x-ms-correlation-request-id": [ - "d8668156-85b5-4162-b97b-ad000d2e7fb7" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T162050Z:d8668156-85b5-4162-b97b-ad000d2e7fb7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 16 Dec 2021 16:20:49 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0JFR0lOODkxMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlVSSlUwSkZSMGxPT0RreE1pMVhSVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0JFR0lOODkxMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" - ], - "x-ms-request-id": [ - "39b27bfc-8487-4f23-9c23-d8361638e726" - ], - "x-ms-correlation-request-id": [ - "39b27bfc-8487-4f23-9c23-d8361638e726" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T162105Z:39b27bfc-8487-4f23-9c23-d8361638e726" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 16 Dec 2021 16:21:05 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0JFR0lOODkxMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlVSSlUwSkZSMGxPT0RreE1pMVhSVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0JFR0lOODkxMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" - ], - "x-ms-request-id": [ - "aa0f9087-4c05-4d87-b08f-5fc4e53093fc" - ], - "x-ms-correlation-request-id": [ - "aa0f9087-4c05-4d87-b08f-5fc4e53093fc" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T162121Z:aa0f9087-4c05-4d87-b08f-5fc4e53093fc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 16 Dec 2021 16:21:21 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0JFR0lOODkxMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlVSSlUwSkZSMGxPT0RreE1pMVhSVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0JFR0lOODkxMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" - ], - "x-ms-request-id": [ - "c16e8198-d0a2-46c4-9d3a-6a62caeb3735" - ], - "x-ms-correlation-request-id": [ - "c16e8198-d0a2-46c4-9d3a-6a62caeb3735" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T162136Z:c16e8198-d0a2-46c4-9d3a-6a62caeb3735" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 16 Dec 2021 16:21:35 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0JFR0lOODkxMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlVSSlUwSkZSMGxPT0RreE1pMVhSVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0JFR0lOODkxMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" - ], - "x-ms-request-id": [ - "a0c9ef59-5bd4-42ef-8040-45fe12912f30" - ], - "x-ms-correlation-request-id": [ - "a0c9ef59-5bd4-42ef-8040-45fe12912f30" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T162151Z:a0c9ef59-5bd4-42ef-8040-45fe12912f30" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 16 Dec 2021 16:21:50 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0JFR0lOODkxMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlVSSlUwSkZSMGxPT0RreE1pMVhSVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" - ], - "x-ms-request-id": [ - "a7d3bc9d-15d5-4d1d-92b9-5695e8b6e876" - ], - "x-ms-correlation-request-id": [ - "a7d3bc9d-15d5-4d1d-92b9-5695e8b6e876" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T162207Z:a7d3bc9d-15d5-4d1d-92b9-5695e8b6e876" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 16 Dec 2021 16:22:06 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0JFR0lOODkxMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlVSSlUwSkZSMGxPT0RreE1pMVhSVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.56803", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" - ], - "x-ms-request-id": [ - "565847ba-24c9-43dd-a4cf-ccba2b658b07" - ], - "x-ms-correlation-request-id": [ - "565847ba-24c9-43dd-a4cf-ccba2b658b07" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211216T162207Z:565847ba-24c9-43dd-a4cf-ccba2b658b07" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 16 Dec 2021 16:22:06 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - } - ], - "Names": { - "BeginCreateFunctionalTest": [ - "RedisBegin8912", - "RedisBegin4030" - ] - }, - "Variables": { - "SubscriptionId": "0ee2a145-4d40-44f4-b764-67b40274f1ac" - } -} \ No newline at end of file diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/CreateUpdateDeleteFunctionalTests/CreateUpdateDeleteTest.json b/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/CreateUpdateDeleteFunctionalTests/CreateUpdateDeleteTest.json index f8a490110e3a..6ffb9ea9914a 100644 --- a/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/CreateUpdateDeleteFunctionalTests/CreateUpdateDeleteTest.json +++ b/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/CreateUpdateDeleteFunctionalTests/CreateUpdateDeleteTest.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/CheckNameAvailability?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvQ2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/CheckNameAvailability?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvQ2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"RedisCreateUpdate3895\",\r\n \"type\": \"Microsoft.Cache/Redis\"\r\n}", + "RequestBody": "{\r\n \"name\": \"RedisCreateUpdate6042\",\r\n \"type\": \"Microsoft.Cache/Redis\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0630fd38-8807-4085-8dc3-9025eb239a38" + "36c251e1-36e0-4704-862c-6581420b7b32" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,20 +29,14 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:23:23 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "c011c2b6-018d-4ebf-aef8-27f9eda49a03" + "22bc3fcd-0f6d-45bc-93fc-398540b7793a" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -50,42 +44,48 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1199" ], "x-ms-correlation-request-id": [ - "b4078e7e-7c35-4c57-a5b4-f8c05ae959c4" + "48556744-b65b-4807-bf01-6060d26417d8" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112323Z:b4078e7e-7c35-4c57-a5b4-f8c05ae959c4" + "WESTUS2:20221017T174100Z:48556744-b65b-4807-bf01-6060d26417d8" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 17 Oct 2022 17:40:59 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisCreateUpdate9078/providers/Microsoft.Cache/redis/RedisCreateUpdate3895?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlOTA3OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlMzg5NT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisCreateUpdate6218/providers/Microsoft.Cache/redis/RedisCreateUpdate6042?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlNjIxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlNjA0Mj9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cbd0269e-cecb-4fba-8712-5a8dc72ecdb0" + "4475f896-bd73-40b6-bf33-f0390300ae1f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -98,26 +98,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:23:25 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisCreateUpdate9078/providers/Microsoft.Cache/redis/RedisCreateUpdate3895?api-version=2021-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisCreateUpdate6218/providers/Microsoft.Cache/redis/RedisCreateUpdate6042?api-version=2022-06-01" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01" ], "x-ms-request-id": [ - "818d19ac-855f-4802-b83e-8d65df44b239" + "6950e338-8cbe-40bb-a85c-3a4eda17b6b9" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -125,17 +119,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1199" ], "x-ms-correlation-request-id": [ - "e317bcb9-35ab-4499-bffe-d884fdcb5fb9" + "e86f1b1f-bcd4-41f4-8254-93472e57d4dd" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112325Z:e317bcb9-35ab-4499-bffe-d884fdcb5fb9" + "WESTUS2:20221017T174102Z:e86f1b1f-bcd4-41f4-8254-93472e57d4dd" + ], + "Date": [ + "Mon, 17 Oct 2022 17:41:01 GMT" ], "Content-Length": [ - "1131" + "1130" ], "Content-Type": [ "application/json; charset=utf-8" @@ -144,43 +144,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisCreateUpdate9078/providers/Microsoft.Cache/Redis/RedisCreateUpdate3895\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisCreateUpdate3895\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"*****\",\r\n \"secondaryKey\": \"******\"\r\n },\r\n \"hostName\": \"RedisCreateUpdate3895.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisCreateUpdate6218/providers/Microsoft.Cache/Redis/RedisCreateUpdate6042\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisCreateUpdate6042\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"30\",\r\n \"maxfragmentationmemory-reserved\": \"30\",\r\n \"maxmemory-delta\": \"30\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\"\r\n },\r\n \"hostName\": \"RedisCreateUpdate6042.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODE4ZDE5YWMtODU1Zi00ODAyLWI4M2UtOGQ2NWRmNDRiMjM5P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNjk1MGUzMzgtOGNiZS00MGJiLWE4NWMtM2E0ZWRhMTdiNmI5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:23:55 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01" ], "x-ms-request-id": [ - "c1817f81-9f0a-437d-97ec-221bdc6320c1" + "d649368e-3df8-4f6f-8b0d-b62f7421f7b8" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -188,77 +182,20 @@ "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" - ], - "x-ms-correlation-request-id": [ - "12c08516-090a-4f22-b941-8c257f86de18" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112356Z:12c08516-090a-4f22-b941-8c257f86de18" - ], - "Content-Length": [ - "353" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"name\": \"818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODE4ZDE5YWMtODU1Zi00ODAyLWI4M2UtOGQ2NWRmNDRiMjM5P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 26 Nov 2021 11:24:26 GMT" - ], - "Pragma": [ - "no-cache" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "3e83adda-5172-4e44-8e52-a091a1c76590" - ], - "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11999" ], "x-ms-correlation-request-id": [ - "54667ed6-5a39-4fe1-912c-0ac0faf3ab60" + "8740ad7c-230a-437e-a579-ab3fd5bcb4cb" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112426Z:54667ed6-5a39-4fe1-912c-0ac0faf3ab60" + "WESTUS2:20221017T174132Z:8740ad7c-230a-437e-a579-ab3fd5bcb4cb" + ], + "Date": [ + "Mon, 17 Oct 2022 17:41:31 GMT" ], "Content-Length": [ "353" @@ -270,43 +207,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"name\": \"818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"name\": \"6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODE4ZDE5YWMtODU1Zi00ODAyLWI4M2UtOGQ2NWRmNDRiMjM5P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNjk1MGUzMzgtOGNiZS00MGJiLWE4NWMtM2E0ZWRhMTdiNmI5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:24:56 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01" ], "x-ms-request-id": [ - "b4a639f5-729e-49c6-8afb-c796bcfcf839" + "e25f0132-ef9d-4551-b84b-ebd57c56a169" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -314,14 +245,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11998" ], "x-ms-correlation-request-id": [ - "c3963b83-20d3-481d-84d2-601ec8596525" + "0fa7c248-fb98-4530-8115-f5b710d88e67" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112456Z:c3963b83-20d3-481d-84d2-601ec8596525" + "WESTUS2:20221017T174202Z:0fa7c248-fb98-4530-8115-f5b710d88e67" + ], + "Date": [ + "Mon, 17 Oct 2022 17:42:01 GMT" ], "Content-Length": [ "353" @@ -333,43 +270,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"name\": \"818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"name\": \"6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODE4ZDE5YWMtODU1Zi00ODAyLWI4M2UtOGQ2NWRmNDRiMjM5P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNjk1MGUzMzgtOGNiZS00MGJiLWE4NWMtM2E0ZWRhMTdiNmI5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:25:26 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01" ], "x-ms-request-id": [ - "2f3e9ced-2764-42f9-9341-0ec1ccd2d024" + "387563c6-afc3-4300-91f5-0ff2da4d394f" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -377,14 +308,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11997" ], "x-ms-correlation-request-id": [ - "115bb6d0-c3c2-42dd-8b93-85f1a9f9947e" + "24c9b513-fb1c-4f1a-9b60-6b4228380ec5" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112527Z:115bb6d0-c3c2-42dd-8b93-85f1a9f9947e" + "WESTUS2:20221017T174232Z:24c9b513-fb1c-4f1a-9b60-6b4228380ec5" + ], + "Date": [ + "Mon, 17 Oct 2022 17:42:31 GMT" ], "Content-Length": [ "353" @@ -396,43 +333,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"name\": \"818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"name\": \"6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODE4ZDE5YWMtODU1Zi00ODAyLWI4M2UtOGQ2NWRmNDRiMjM5P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNjk1MGUzMzgtOGNiZS00MGJiLWE4NWMtM2E0ZWRhMTdiNmI5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:25:57 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01" ], "x-ms-request-id": [ - "6aaffadf-6572-4094-aca5-b8b823f8dd28" + "9a5a26b0-6e14-4c43-95be-aa323fe85c43" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -440,14 +371,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11996" ], "x-ms-correlation-request-id": [ - "5f8fc832-d7ab-47c5-8fe3-a8d19d20c373" + "0b02563f-2db0-4802-8cb9-e3e13964ea20" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112557Z:5f8fc832-d7ab-47c5-8fe3-a8d19d20c373" + "WESTUS2:20221017T174302Z:0b02563f-2db0-4802-8cb9-e3e13964ea20" + ], + "Date": [ + "Mon, 17 Oct 2022 17:43:01 GMT" ], "Content-Length": [ "353" @@ -459,43 +396,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"name\": \"818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"name\": \"6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODE4ZDE5YWMtODU1Zi00ODAyLWI4M2UtOGQ2NWRmNDRiMjM5P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNjk1MGUzMzgtOGNiZS00MGJiLWE4NWMtM2E0ZWRhMTdiNmI5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:26:27 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01" ], "x-ms-request-id": [ - "94a1f876-7e9e-4899-b279-09c92b0ee49d" + "5e479805-5be1-48b4-968a-af2313f53970" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -503,14 +434,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11995" ], "x-ms-correlation-request-id": [ - "5b14b340-0ac1-42b6-80fd-23792f784435" + "1546f21a-6efa-4081-a24c-b41f4f14310e" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112627Z:5b14b340-0ac1-42b6-80fd-23792f784435" + "WESTUS2:20221017T174332Z:1546f21a-6efa-4081-a24c-b41f4f14310e" + ], + "Date": [ + "Mon, 17 Oct 2022 17:43:32 GMT" ], "Content-Length": [ "353" @@ -522,43 +459,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"name\": \"818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"name\": \"6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODE4ZDE5YWMtODU1Zi00ODAyLWI4M2UtOGQ2NWRmNDRiMjM5P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNjk1MGUzMzgtOGNiZS00MGJiLWE4NWMtM2E0ZWRhMTdiNmI5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:26:58 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01" ], "x-ms-request-id": [ - "d1eeb10a-a44e-436d-8070-5d7857a05833" + "dac53109-eb85-4897-abfd-4b46ec007f64" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -566,14 +497,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "11994" ], "x-ms-correlation-request-id": [ - "7294ed93-5aaf-4b8d-a77c-820b89819d06" + "bee291f8-f4a8-4177-9f09-a85b3d43d9be" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112658Z:7294ed93-5aaf-4b8d-a77c-820b89819d06" + "WESTUS2:20221017T174402Z:bee291f8-f4a8-4177-9f09-a85b3d43d9be" + ], + "Date": [ + "Mon, 17 Oct 2022 17:44:02 GMT" ], "Content-Length": [ "353" @@ -585,43 +522,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"name\": \"818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"name\": \"6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODE4ZDE5YWMtODU1Zi00ODAyLWI4M2UtOGQ2NWRmNDRiMjM5P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNjk1MGUzMzgtOGNiZS00MGJiLWE4NWMtM2E0ZWRhMTdiNmI5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:27:28 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01" ], "x-ms-request-id": [ - "abc51996-ce81-4d98-8fae-7af93b068283" + "f3bf5d3e-7c26-4005-aee9-8db61aa6ca81" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -629,14 +560,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" + "11993" ], "x-ms-correlation-request-id": [ - "108f5622-dc3f-45ad-a6c5-81a6dfe4c436" + "a31f4cb9-b1fc-459b-a040-fdb39ea0a911" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112728Z:108f5622-dc3f-45ad-a6c5-81a6dfe4c436" + "WESTUS2:20221017T174432Z:a31f4cb9-b1fc-459b-a040-fdb39ea0a911" + ], + "Date": [ + "Mon, 17 Oct 2022 17:44:32 GMT" ], "Content-Length": [ "353" @@ -648,43 +585,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"name\": \"818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"name\": \"6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODE4ZDE5YWMtODU1Zi00ODAyLWI4M2UtOGQ2NWRmNDRiMjM5P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNjk1MGUzMzgtOGNiZS00MGJiLWE4NWMtM2E0ZWRhMTdiNmI5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:27:58 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01" ], "x-ms-request-id": [ - "28a3ec4b-80b3-4456-a07b-061c58e84913" + "ff0e6fad-6b2a-4ff3-91f0-6a5c61fe08c6" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -692,14 +623,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" + "11992" ], "x-ms-correlation-request-id": [ - "e095ab9c-60a2-488c-a439-3b8f2b9621e6" + "107f4bdb-b026-4b8b-84c4-973753ac5f52" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112758Z:e095ab9c-60a2-488c-a439-3b8f2b9621e6" + "WESTUS2:20221017T174502Z:107f4bdb-b026-4b8b-84c4-973753ac5f52" + ], + "Date": [ + "Mon, 17 Oct 2022 17:45:02 GMT" ], "Content-Length": [ "353" @@ -711,43 +648,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"name\": \"818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"name\": \"6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODE4ZDE5YWMtODU1Zi00ODAyLWI4M2UtOGQ2NWRmNDRiMjM5P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNjk1MGUzMzgtOGNiZS00MGJiLWE4NWMtM2E0ZWRhMTdiNmI5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:28:29 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01" ], "x-ms-request-id": [ - "7ed55784-9f7b-4d0e-97c0-0c3feb383c37" + "c839892f-7d69-4e08-a9fc-80069340d7f8" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -755,14 +686,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" + "11991" ], "x-ms-correlation-request-id": [ - "703cff4d-5add-4b73-aede-a45104e668bf" + "8cd34b9b-98dd-4a76-af21-93a29cbf9882" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112829Z:703cff4d-5add-4b73-aede-a45104e668bf" + "WESTUS2:20221017T174532Z:8cd34b9b-98dd-4a76-af21-93a29cbf9882" + ], + "Date": [ + "Mon, 17 Oct 2022 17:45:32 GMT" ], "Content-Length": [ "353" @@ -774,43 +711,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"name\": \"818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"name\": \"6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODE4ZDE5YWMtODU1Zi00ODAyLWI4M2UtOGQ2NWRmNDRiMjM5P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNjk1MGUzMzgtOGNiZS00MGJiLWE4NWMtM2E0ZWRhMTdiNmI5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:28:59 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01" ], "x-ms-request-id": [ - "33bbdc95-4645-4b72-be83-a1d8f728aeb0" + "75a27a36-91b4-4e42-92bf-9cc347fff427" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -818,14 +749,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11942" + "11990" ], "x-ms-correlation-request-id": [ - "4fbc579e-71e1-414d-9db3-6d561743c851" + "e7de465d-7ddb-42f6-a9e9-df8b8c04b9a9" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112859Z:4fbc579e-71e1-414d-9db3-6d561743c851" + "WESTUS2:20221017T174603Z:e7de465d-7ddb-42f6-a9e9-df8b8c04b9a9" + ], + "Date": [ + "Mon, 17 Oct 2022 17:46:03 GMT" ], "Content-Length": [ "353" @@ -837,43 +774,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"name\": \"818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"name\": \"6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODE4ZDE5YWMtODU1Zi00ODAyLWI4M2UtOGQ2NWRmNDRiMjM5P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNjk1MGUzMzgtOGNiZS00MGJiLWE4NWMtM2E0ZWRhMTdiNmI5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:29:29 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01" ], "x-ms-request-id": [ - "bda3af3c-4913-494f-bfe9-75cce111c653" + "26a87162-520c-4b63-b786-2d3915975bec" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -881,14 +812,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11939" + "11989" ], "x-ms-correlation-request-id": [ - "ad44967e-8ea0-4213-9671-397e50a5886a" + "a42f911d-5f0b-450a-b87d-694e0fc408ec" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112929Z:ad44967e-8ea0-4213-9671-397e50a5886a" + "WESTUS2:20221017T174633Z:a42f911d-5f0b-450a-b87d-694e0fc408ec" + ], + "Date": [ + "Mon, 17 Oct 2022 17:46:33 GMT" ], "Content-Length": [ "353" @@ -900,43 +837,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"name\": \"818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"name\": \"6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODE4ZDE5YWMtODU1Zi00ODAyLWI4M2UtOGQ2NWRmNDRiMjM5P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNjk1MGUzMzgtOGNiZS00MGJiLWE4NWMtM2E0ZWRhMTdiNmI5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:30:00 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01" ], "x-ms-request-id": [ - "abc3e82a-160f-46ac-996e-9d97444e2036" + "a8787157-571a-457a-bb4a-453003d79386" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -944,14 +875,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11944" + "11988" ], "x-ms-correlation-request-id": [ - "b0ff203c-cc0a-4c54-9539-514a5c32ab15" + "239facd3-d9d2-4067-bcbb-abf0e0805304" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113000Z:b0ff203c-cc0a-4c54-9539-514a5c32ab15" + "WESTUS2:20221017T174703Z:239facd3-d9d2-4067-bcbb-abf0e0805304" + ], + "Date": [ + "Mon, 17 Oct 2022 17:47:03 GMT" ], "Content-Length": [ "353" @@ -963,43 +900,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"name\": \"818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"name\": \"6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODE4ZDE5YWMtODU1Zi00ODAyLWI4M2UtOGQ2NWRmNDRiMjM5P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNjk1MGUzMzgtOGNiZS00MGJiLWE4NWMtM2E0ZWRhMTdiNmI5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:30:30 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01" ], "x-ms-request-id": [ - "d9505fe2-440e-4cd9-9ed9-b3b441acc6b7" + "281a7ff7-a818-4bdf-93c4-6f080aa62ce8" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1007,14 +938,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11941" + "11987" ], "x-ms-correlation-request-id": [ - "69fa5bd2-a3d6-4f3f-b59b-f66098f2e5dd" + "bec9107c-2ec5-4fdb-9dd1-dc7616c8e416" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113031Z:69fa5bd2-a3d6-4f3f-b59b-f66098f2e5dd" + "WESTUS2:20221017T174733Z:bec9107c-2ec5-4fdb-9dd1-dc7616c8e416" + ], + "Date": [ + "Mon, 17 Oct 2022 17:47:32 GMT" ], "Content-Length": [ "353" @@ -1026,43 +963,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"name\": \"818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"name\": \"6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODE4ZDE5YWMtODU1Zi00ODAyLWI4M2UtOGQ2NWRmNDRiMjM5P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNjk1MGUzMzgtOGNiZS00MGJiLWE4NWMtM2E0ZWRhMTdiNmI5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:31:01 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01" ], "x-ms-request-id": [ - "cf43f3f0-e641-4780-b946-836ce5ace773" + "2c991107-753d-4e5a-9128-955a90309e9f" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1070,14 +1001,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11938" + "11986" ], "x-ms-correlation-request-id": [ - "39d44fde-0b0d-4aa0-8c2b-8c6c9fb0182f" + "e32a58b2-1e5d-440e-87f2-d3379afa73d1" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113101Z:39d44fde-0b0d-4aa0-8c2b-8c6c9fb0182f" + "WESTUS2:20221017T174803Z:e32a58b2-1e5d-440e-87f2-d3379afa73d1" + ], + "Date": [ + "Mon, 17 Oct 2022 17:48:02 GMT" ], "Content-Length": [ "353" @@ -1089,43 +1026,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"name\": \"818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"name\": \"6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODE4ZDE5YWMtODU1Zi00ODAyLWI4M2UtOGQ2NWRmNDRiMjM5P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNjk1MGUzMzgtOGNiZS00MGJiLWE4NWMtM2E0ZWRhMTdiNmI5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:31:31 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01" ], "x-ms-request-id": [ - "7b399a57-1c54-428e-9b73-af11f39bf201" + "e47ba42d-791b-4d1f-8c52-c6f6028405f5" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1133,14 +1064,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11935" + "11985" ], "x-ms-correlation-request-id": [ - "39798f25-8af0-4125-981b-a57d2101d42f" + "eb4c16bb-6742-4df8-bf07-c9edb8973513" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113131Z:39798f25-8af0-4125-981b-a57d2101d42f" + "WESTUS2:20221017T174833Z:eb4c16bb-6742-4df8-bf07-c9edb8973513" + ], + "Date": [ + "Mon, 17 Oct 2022 17:48:32 GMT" ], "Content-Length": [ "353" @@ -1152,43 +1089,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"name\": \"818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"name\": \"6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODE4ZDE5YWMtODU1Zi00ODAyLWI4M2UtOGQ2NWRmNDRiMjM5P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNjk1MGUzMzgtOGNiZS00MGJiLWE4NWMtM2E0ZWRhMTdiNmI5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:32:01 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01" ], "x-ms-request-id": [ - "5f588925-a7a8-4901-99ba-e168b16e5e67" + "e27d5818-7265-45eb-8186-0e2814827edc" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1196,14 +1127,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11932" + "11984" ], "x-ms-correlation-request-id": [ - "54737053-b682-416e-a327-9a1329ec5bd3" + "40a55a7a-bfa7-4df6-b0a6-33ff439cff32" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113201Z:54737053-b682-416e-a327-9a1329ec5bd3" + "WESTUS2:20221017T174903Z:40a55a7a-bfa7-4df6-b0a6-33ff439cff32" + ], + "Date": [ + "Mon, 17 Oct 2022 17:49:03 GMT" ], "Content-Length": [ "353" @@ -1215,43 +1152,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"name\": \"818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"name\": \"6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODE4ZDE5YWMtODU1Zi00ODAyLWI4M2UtOGQ2NWRmNDRiMjM5P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNjk1MGUzMzgtOGNiZS00MGJiLWE4NWMtM2E0ZWRhMTdiNmI5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:32:31 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01" ], "x-ms-request-id": [ - "1d10dd72-8adb-450f-8104-373a7b88c807" + "7fb1999f-2ab6-49bb-9087-54b22639b03c" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1259,14 +1190,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11929" + "11983" ], "x-ms-correlation-request-id": [ - "b4bd676f-89c9-4bc4-a392-85a38221f54d" + "643906ec-5bba-45ff-96e8-59d9a69ae063" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113232Z:b4bd676f-89c9-4bc4-a392-85a38221f54d" + "WESTUS2:20221017T174933Z:643906ec-5bba-45ff-96e8-59d9a69ae063" + ], + "Date": [ + "Mon, 17 Oct 2022 17:49:33 GMT" ], "Content-Length": [ "353" @@ -1278,43 +1215,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"name\": \"818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"name\": \"6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODE4ZDE5YWMtODU1Zi00ODAyLWI4M2UtOGQ2NWRmNDRiMjM5P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNjk1MGUzMzgtOGNiZS00MGJiLWE4NWMtM2E0ZWRhMTdiNmI5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:33:01 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01" ], "x-ms-request-id": [ - "be00d627-1928-4821-9309-9be5016e218e" + "d4205926-9ae4-4784-a8fa-2cd560591d4f" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1322,14 +1253,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11926" + "11982" ], "x-ms-correlation-request-id": [ - "e46c1610-a168-41c0-baa1-6bd89002bd4a" + "3a699caa-bda1-4cd3-9a7a-9ee90dfca8be" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113302Z:e46c1610-a168-41c0-baa1-6bd89002bd4a" + "WESTUS2:20221017T175003Z:3a699caa-bda1-4cd3-9a7a-9ee90dfca8be" + ], + "Date": [ + "Mon, 17 Oct 2022 17:50:03 GMT" ], "Content-Length": [ "353" @@ -1341,43 +1278,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"name\": \"818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"name\": \"6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODE4ZDE5YWMtODU1Zi00ODAyLWI4M2UtOGQ2NWRmNDRiMjM5P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNjk1MGUzMzgtOGNiZS00MGJiLWE4NWMtM2E0ZWRhMTdiNmI5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:33:51 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01" ], "x-ms-request-id": [ - "4c297f90-6548-4e89-941c-993221dc268e" + "ecd6bf59-58a4-4ad8-8d19-064206cef701" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1386,13 +1317,19 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11923" + "11981" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "cdf644ad-46db-4b8c-bec0-c2bc294e2de0" + "7614cb19-f749-4416-8b16-ddace2965131" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113352Z:cdf644ad-46db-4b8c-bec0-c2bc294e2de0" + "WESTUS2:20221017T175033Z:7614cb19-f749-4416-8b16-ddace2965131" + ], + "Date": [ + "Mon, 17 Oct 2022 17:50:33 GMT" ], "Content-Length": [ "353" @@ -1404,43 +1341,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"name\": \"818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"name\": \"6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODE4ZDE5YWMtODU1Zi00ODAyLWI4M2UtOGQ2NWRmNDRiMjM5P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNjk1MGUzMzgtOGNiZS00MGJiLWE4NWMtM2E0ZWRhMTdiNmI5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:34:22 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01" ], "x-ms-request-id": [ - "2ca031a1-0627-40a7-83e1-71bb09b01e32" + "075d5aae-1028-4816-bc29-936ecf7bb451" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1448,14 +1379,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11920" + "11980" ], "x-ms-correlation-request-id": [ - "6c0c424a-d55e-48e0-846e-e2cb50670607" + "3e6460ff-c408-44fc-aadd-761fa62298ca" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113422Z:6c0c424a-d55e-48e0-846e-e2cb50670607" + "WESTUS2:20221017T175104Z:3e6460ff-c408-44fc-aadd-761fa62298ca" + ], + "Date": [ + "Mon, 17 Oct 2022 17:51:03 GMT" ], "Content-Length": [ "353" @@ -1467,43 +1404,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"name\": \"818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"name\": \"6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODE4ZDE5YWMtODU1Zi00ODAyLWI4M2UtOGQ2NWRmNDRiMjM5P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNjk1MGUzMzgtOGNiZS00MGJiLWE4NWMtM2E0ZWRhMTdiNmI5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:34:52 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01" ], "x-ms-request-id": [ - "1b5ecd45-62dd-4e09-8542-2a08f22f5106" + "2aebfb62-ac74-45a9-83b1-dba53184b48f" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1511,14 +1442,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11917" + "11979" ], "x-ms-correlation-request-id": [ - "eff88627-8659-4fe8-b17f-bc3405786681" + "eeeac6ea-e2a4-46e4-87a0-f90eb5ce56d9" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113453Z:eff88627-8659-4fe8-b17f-bc3405786681" + "WESTUS2:20221017T175134Z:eeeac6ea-e2a4-46e4-87a0-f90eb5ce56d9" + ], + "Date": [ + "Mon, 17 Oct 2022 17:51:33 GMT" ], "Content-Length": [ "353" @@ -1530,43 +1467,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"name\": \"818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"name\": \"6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODE4ZDE5YWMtODU1Zi00ODAyLWI4M2UtOGQ2NWRmNDRiMjM5P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNjk1MGUzMzgtOGNiZS00MGJiLWE4NWMtM2E0ZWRhMTdiNmI5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:35:23 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01" ], "x-ms-request-id": [ - "42f75690-333e-41cc-950e-ec9a7cab29c7" + "c412742d-cd02-437f-a8b0-c23000697354" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1574,14 +1505,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11917" + "11978" ], "x-ms-correlation-request-id": [ - "f75674f1-f640-4788-a409-ab7a3f5260c8" + "fa8f0020-0e10-4a05-a17f-a431d8e8f566" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113523Z:f75674f1-f640-4788-a409-ab7a3f5260c8" + "WESTUS2:20221017T175204Z:fa8f0020-0e10-4a05-a17f-a431d8e8f566" + ], + "Date": [ + "Mon, 17 Oct 2022 17:52:04 GMT" ], "Content-Length": [ "353" @@ -1593,43 +1530,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"name\": \"818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"name\": \"6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODE4ZDE5YWMtODU1Zi00ODAyLWI4M2UtOGQ2NWRmNDRiMjM5P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNjk1MGUzMzgtOGNiZS00MGJiLWE4NWMtM2E0ZWRhMTdiNmI5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:35:53 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01" ], "x-ms-request-id": [ - "190fb0b5-122f-4232-a228-54e2c2f0c886" + "0e7be43f-fac5-4ef4-b90a-adfe2c0e4881" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1637,14 +1568,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11914" + "11977" ], "x-ms-correlation-request-id": [ - "e6b087da-3d23-4998-b200-ecaa5ce8bf5b" + "569227a3-c4e1-4a47-88b6-71c48e7422ba" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113553Z:e6b087da-3d23-4998-b200-ecaa5ce8bf5b" + "WESTUS2:20221017T175234Z:569227a3-c4e1-4a47-88b6-71c48e7422ba" + ], + "Date": [ + "Mon, 17 Oct 2022 17:52:34 GMT" ], "Content-Length": [ "353" @@ -1656,43 +1593,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"name\": \"818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"name\": \"6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODE4ZDE5YWMtODU1Zi00ODAyLWI4M2UtOGQ2NWRmNDRiMjM5P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNjk1MGUzMzgtOGNiZS00MGJiLWE4NWMtM2E0ZWRhMTdiNmI5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:36:23 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01" ], "x-ms-request-id": [ - "81dd37f2-bb4a-468e-b803-1179cd9a9734" + "ea4f860e-51b1-47b4-83c8-e8b614cc1df2" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1700,14 +1631,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11911" + "11976" ], "x-ms-correlation-request-id": [ - "7bb2291f-2db3-474d-b3e5-fb373ddae52e" + "9664a236-e696-43ed-a145-8d88a3291dc6" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113624Z:7bb2291f-2db3-474d-b3e5-fb373ddae52e" + "WESTUS2:20221017T175304Z:9664a236-e696-43ed-a145-8d88a3291dc6" + ], + "Date": [ + "Mon, 17 Oct 2022 17:53:04 GMT" ], "Content-Length": [ "353" @@ -1719,43 +1656,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"name\": \"818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"name\": \"6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODE4ZDE5YWMtODU1Zi00ODAyLWI4M2UtOGQ2NWRmNDRiMjM5P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNjk1MGUzMzgtOGNiZS00MGJiLWE4NWMtM2E0ZWRhMTdiNmI5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:36:54 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01" ], "x-ms-request-id": [ - "c5547e9c-0d3f-4ed4-944c-3c17c2c6675e" + "d480dba4-1f5c-47d8-9000-382221ccaf3f" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1763,14 +1694,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11909" + "11975" ], "x-ms-correlation-request-id": [ - "488129ec-8299-4bfd-9d60-f91b8eba2555" + "6e332184-bb86-4439-92fa-0471b6e2b7af" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113654Z:488129ec-8299-4bfd-9d60-f91b8eba2555" + "WESTUS2:20221017T175334Z:6e332184-bb86-4439-92fa-0471b6e2b7af" + ], + "Date": [ + "Mon, 17 Oct 2022 17:53:34 GMT" ], "Content-Length": [ "353" @@ -1782,43 +1719,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"name\": \"818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"name\": \"6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODE4ZDE5YWMtODU1Zi00ODAyLWI4M2UtOGQ2NWRmNDRiMjM5P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNjk1MGUzMzgtOGNiZS00MGJiLWE4NWMtM2E0ZWRhMTdiNmI5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:37:24 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01" ], "x-ms-request-id": [ - "c000f8e3-e52c-4e89-a5da-eded35e3f77b" + "38ab1ce4-826b-4d71-a8b8-908fe030af97" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1826,14 +1757,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11906" + "11974" ], "x-ms-correlation-request-id": [ - "c2789cf0-fac2-40aa-9e58-c4d6388e6c9b" + "de10ce6d-a1dc-4757-9c8f-7690bdb696cf" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113724Z:c2789cf0-fac2-40aa-9e58-c4d6388e6c9b" + "WESTUS2:20221017T175404Z:de10ce6d-a1dc-4757-9c8f-7690bdb696cf" + ], + "Date": [ + "Mon, 17 Oct 2022 17:54:03 GMT" ], "Content-Length": [ "353" @@ -1845,43 +1782,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"name\": \"818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"name\": \"6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODE4ZDE5YWMtODU1Zi00ODAyLWI4M2UtOGQ2NWRmNDRiMjM5P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNjk1MGUzMzgtOGNiZS00MGJiLWE4NWMtM2E0ZWRhMTdiNmI5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:37:55 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9?api-version=2022-06-01" ], "x-ms-request-id": [ - "b076c5c1-8933-47f3-bb25-2cb1120b5c3f" + "9524976a-29e7-4623-98d9-254c181d0fda" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1889,14 +1820,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11904" + "11973" ], "x-ms-correlation-request-id": [ - "92bfb2fa-4765-4440-9df8-5894e5b32805" + "ccccc4f9-561c-432b-8d77-afef2fa79536" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113755Z:92bfb2fa-4765-4440-9df8-5894e5b32805" + "WESTUS2:20221017T175434Z:ccccc4f9-561c-432b-8d77-afef2fa79536" + ], + "Date": [ + "Mon, 17 Oct 2022 17:54:34 GMT" ], "Content-Length": [ "352" @@ -1908,40 +1845,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"name\": \"818d19ac-855f-4802-b83e-8d65df44b239\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"name\": \"6950e338-8cbe-40bb-a85c-3a4eda17b6b9\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisCreateUpdate9078/providers/Microsoft.Cache/redis/RedisCreateUpdate3895?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlOTA3OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlMzg5NT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisCreateUpdate6218/providers/Microsoft.Cache/redis/RedisCreateUpdate6042?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlNjIxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlNjA0Mj9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:37:55 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "20d75444-4873-4b19-8873-9755c7c10c66" + "57821ed1-f4be-4d98-ba18-17b18bb88b91" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1949,17 +1880,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11903" + "11972" ], "x-ms-correlation-request-id": [ - "72ce2b04-2564-48e3-8885-3faee0071bf9" + "322e983f-3946-4308-a410-c30a7b1ee76d" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113755Z:72ce2b04-2564-48e3-8885-3faee0071bf9" + "WESTUS2:20221017T175434Z:322e983f-3946-4308-a410-c30a7b1ee76d" + ], + "Date": [ + "Mon, 17 Oct 2022 17:54:34 GMT" ], "Content-Length": [ - "737" + "736" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1968,26 +1905,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisCreateUpdate9078/providers/Microsoft.Cache/Redis/RedisCreateUpdate3895\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisCreateUpdate3895\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisCreateUpdate3895.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisCreateUpdate6218/providers/Microsoft.Cache/Redis/RedisCreateUpdate6042\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisCreateUpdate6042\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"30\",\r\n \"maxfragmentationmemory-reserved\": \"30\",\r\n \"maxmemory-delta\": \"30\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisCreateUpdate6042.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisCreateUpdate9078/providers/Microsoft.Cache/redis/RedisCreateUpdate3895?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlOTA3OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlMzg5NT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisCreateUpdate6218/providers/Microsoft.Cache/redis/RedisCreateUpdate6042?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlNjIxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlNjA0Mj9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"enableNonSslPort\": true,\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3ad9895f-1a1f-4576-818e-06caa566617e" + "6d8502f0-de7d-4759-a4fd-bbf13accbb7c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2000,20 +1937,14 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:37:57 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "100f29f9-03f1-4b56-b571-9bc760e349af" + "bb9477ba-ac95-4f62-af6b-b0d7dc378614" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2021,17 +1952,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1198" ], "x-ms-correlation-request-id": [ - "8d012205-7531-4550-ab63-c0370422dbee" + "520fa036-96bf-4c47-89bb-85c576294e68" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113757Z:8d012205-7531-4550-ab63-c0370422dbee" + "WESTUS2:20221017T175435Z:520fa036-96bf-4c47-89bb-85c576294e68" + ], + "Date": [ + "Mon, 17 Oct 2022 17:54:34 GMT" ], "Content-Length": [ - "788" + "787" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2040,49 +1977,43 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisCreateUpdate9078/providers/Microsoft.Cache/Redis/RedisCreateUpdate3895\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisCreateUpdate3895\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"nonSslPort\": 13000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisCreateUpdate3895.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisCreateUpdate6218/providers/Microsoft.Cache/Redis/RedisCreateUpdate6042\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisCreateUpdate6042\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"nonSslPort\": 13000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"30\",\r\n \"maxfragmentationmemory-reserved\": \"30\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-delta\": \"30\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisCreateUpdate6042.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisCreateUpdate9078/providers/Microsoft.Cache/redis/RedisCreateUpdate3895?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlOTA3OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlMzg5NT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisCreateUpdate6218/providers/Microsoft.Cache/redis/RedisCreateUpdate6042?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlNjIxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlNjA0Mj9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3447613f-cf4e-4466-934a-957ac6a38681" + "5c4875a8-4fa2-48ea-9279-e74331f8e20d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:37:57 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/ff501916-c663-4e96-9bc7-30c911034a12?api-version=2021-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/08e2b715-28e0-408f-a2f5-673bedffc0b5?api-version=2022-06-01" ], "x-ms-request-id": [ - "ff501916-c663-4e96-9bc7-30c911034a12" + "08e2b715-28e0-408f-a2f5-673bedffc0b5" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2090,59 +2021,59 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14999" ], "x-ms-correlation-request-id": [ - "3f1a69e3-31d4-40fd-b6c8-c6d6c95a5976" + "11e95643-b0dd-4c89-8cae-d3238a31fab5" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113757Z:3f1a69e3-31d4-40fd-b6c8-c6d6c95a5976" + "WESTUS2:20221017T175435Z:11e95643-b0dd-4c89-8cae-d3238a31fab5" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 17 Oct 2022 17:54:35 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/ff501916-c663-4e96-9bc7-30c911034a12?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2ZmNTAxOTE2LWM2NjMtNGU5Ni05YmM3LTMwYzkxMTAzNGExMj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/08e2b715-28e0-408f-a2f5-673bedffc0b5?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzA4ZTJiNzE1LTI4ZTAtNDA4Zi1hMmY1LTY3M2JlZGZmYzBiNT9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:38:27 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/ff501916-c663-4e96-9bc7-30c911034a12?api-version=2021-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/08e2b715-28e0-408f-a2f5-673bedffc0b5?api-version=2022-06-01" ], "x-ms-request-id": [ - "742b1fdb-e770-4d6c-b6f5-76defbab2d33" + "e90cd513-d1cd-4518-b246-2ae0b9249e47" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2150,59 +2081,59 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11901" + "11971" ], "x-ms-correlation-request-id": [ - "07e1b02f-718a-4895-b843-69ad462c6d68" + "dc664f67-ef57-4697-b946-00c22f7bc119" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113828Z:07e1b02f-718a-4895-b843-69ad462c6d68" + "WESTUS2:20221017T175505Z:dc664f67-ef57-4697-b946-00c22f7bc119" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 17 Oct 2022 17:55:04 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/ff501916-c663-4e96-9bc7-30c911034a12?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2ZmNTAxOTE2LWM2NjMtNGU5Ni05YmM3LTMwYzkxMTAzNGExMj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/08e2b715-28e0-408f-a2f5-673bedffc0b5?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzA4ZTJiNzE1LTI4ZTAtNDA4Zi1hMmY1LTY3M2JlZGZmYzBiNT9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:38:58 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/ff501916-c663-4e96-9bc7-30c911034a12?api-version=2021-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/08e2b715-28e0-408f-a2f5-673bedffc0b5?api-version=2022-06-01" ], "x-ms-request-id": [ - "e7b1edbf-ef68-467e-b7a0-b163039f16e4" + "61f2a4a7-5aec-4d0b-a280-cdf2c290f6af" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2210,59 +2141,59 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11899" + "11970" ], "x-ms-correlation-request-id": [ - "a044633f-6579-4b16-837b-447012df8a08" + "1fe68f4c-33ee-4657-b039-08889519fb3b" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113858Z:a044633f-6579-4b16-837b-447012df8a08" + "WESTUS2:20221017T175536Z:1fe68f4c-33ee-4657-b039-08889519fb3b" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 17 Oct 2022 17:55:35 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/ff501916-c663-4e96-9bc7-30c911034a12?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2ZmNTAxOTE2LWM2NjMtNGU5Ni05YmM3LTMwYzkxMTAzNGExMj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/08e2b715-28e0-408f-a2f5-673bedffc0b5?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzA4ZTJiNzE1LTI4ZTAtNDA4Zi1hMmY1LTY3M2JlZGZmYzBiNT9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:39:29 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/ff501916-c663-4e96-9bc7-30c911034a12?api-version=2021-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/08e2b715-28e0-408f-a2f5-673bedffc0b5?api-version=2022-06-01" ], "x-ms-request-id": [ - "684832a8-805c-4ca8-8b3f-efa3ad16f03f" + "f9b1033c-b90e-4025-856a-b53ce770579c" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2270,59 +2201,59 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11897" + "11969" ], "x-ms-correlation-request-id": [ - "2e8965aa-6a31-4a60-a0c3-a23041805597" + "0d225226-9079-4395-b836-c770e83ecdf8" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113929Z:2e8965aa-6a31-4a60-a0c3-a23041805597" + "WESTUS2:20221017T175606Z:0d225226-9079-4395-b836-c770e83ecdf8" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 17 Oct 2022 17:56:05 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/ff501916-c663-4e96-9bc7-30c911034a12?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2ZmNTAxOTE2LWM2NjMtNGU5Ni05YmM3LTMwYzkxMTAzNGExMj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/08e2b715-28e0-408f-a2f5-673bedffc0b5?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzA4ZTJiNzE1LTI4ZTAtNDA4Zi1hMmY1LTY3M2JlZGZmYzBiNT9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:39:59 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/ff501916-c663-4e96-9bc7-30c911034a12?api-version=2021-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/08e2b715-28e0-408f-a2f5-673bedffc0b5?api-version=2022-06-01" ], "x-ms-request-id": [ - "3d189edc-c89b-44be-9f07-b331140aca6b" + "e9679693-fc9d-4a98-bea3-acb172a1c176" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2330,59 +2261,59 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11895" + "11968" ], "x-ms-correlation-request-id": [ - "10ab9b21-d641-419b-8167-563820e13994" + "98d3b78a-39d6-46c9-9ad7-d1665761e392" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113959Z:10ab9b21-d641-419b-8167-563820e13994" + "WESTUS2:20221017T175636Z:98d3b78a-39d6-46c9-9ad7-d1665761e392" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 17 Oct 2022 17:56:35 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/ff501916-c663-4e96-9bc7-30c911034a12?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2ZmNTAxOTE2LWM2NjMtNGU5Ni05YmM3LTMwYzkxMTAzNGExMj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/08e2b715-28e0-408f-a2f5-673bedffc0b5?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzA4ZTJiNzE1LTI4ZTAtNDA4Zi1hMmY1LTY3M2JlZGZmYzBiNT9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:40:28 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/ff501916-c663-4e96-9bc7-30c911034a12?api-version=2021-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/08e2b715-28e0-408f-a2f5-673bedffc0b5?api-version=2022-06-01" ], "x-ms-request-id": [ - "1910d191-e6f0-4a11-868e-519a9d0c450a" + "4b4807dc-adfc-4df8-a4c3-d6ffef1ea3c3" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2390,59 +2321,59 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11893" + "11967" ], "x-ms-correlation-request-id": [ - "0d51489f-e9b5-463c-b217-35c6075d8c20" + "32eb53de-b911-4c7a-a783-6913866c0efb" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T114029Z:0d51489f-e9b5-463c-b217-35c6075d8c20" + "WESTUS2:20221017T175706Z:32eb53de-b911-4c7a-a783-6913866c0efb" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 17 Oct 2022 17:57:05 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/ff501916-c663-4e96-9bc7-30c911034a12?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2ZmNTAxOTE2LWM2NjMtNGU5Ni05YmM3LTMwYzkxMTAzNGExMj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/08e2b715-28e0-408f-a2f5-673bedffc0b5?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzA4ZTJiNzE1LTI4ZTAtNDA4Zi1hMmY1LTY3M2JlZGZmYzBiNT9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:41:00 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/ff501916-c663-4e96-9bc7-30c911034a12?api-version=2021-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/08e2b715-28e0-408f-a2f5-673bedffc0b5?api-version=2022-06-01" ], "x-ms-request-id": [ - "bbc6af4a-8c5a-411c-8cd3-058563484585" + "7e091428-bc87-445e-b607-91c3ba63f05f" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2450,59 +2381,59 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11891" + "11966" ], "x-ms-correlation-request-id": [ - "e59820fb-7ddd-4884-9939-18d965cf8783" + "e089ab0e-65b4-4bce-bcc0-9d4bb2242093" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T114100Z:e59820fb-7ddd-4884-9939-18d965cf8783" + "WESTUS2:20221017T175736Z:e089ab0e-65b4-4bce-bcc0-9d4bb2242093" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 17 Oct 2022 17:57:35 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/ff501916-c663-4e96-9bc7-30c911034a12?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2ZmNTAxOTE2LWM2NjMtNGU5Ni05YmM3LTMwYzkxMTAzNGExMj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/08e2b715-28e0-408f-a2f5-673bedffc0b5?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzA4ZTJiNzE1LTI4ZTAtNDA4Zi1hMmY1LTY3M2JlZGZmYzBiNT9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:41:29 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/ff501916-c663-4e96-9bc7-30c911034a12?api-version=2021-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/08e2b715-28e0-408f-a2f5-673bedffc0b5?api-version=2022-06-01" ], "x-ms-request-id": [ - "589b7a9c-e40c-4b69-b50f-97a30f859cf9" + "08df5dea-7f75-4148-a11e-b2f68ee4e78e" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2510,56 +2441,56 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11889" + "11965" ], "x-ms-correlation-request-id": [ - "1daabe78-ce97-4109-b571-6d7d27aa49d9" + "05bb6bd3-aef6-4a00-a89e-19d0096bcbb1" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T114130Z:1daabe78-ce97-4109-b571-6d7d27aa49d9" + "WESTUS2:20221017T175806Z:05bb6bd3-aef6-4a00-a89e-19d0096bcbb1" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 17 Oct 2022 17:58:05 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/ff501916-c663-4e96-9bc7-30c911034a12?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2ZmNTAxOTE2LWM2NjMtNGU5Ni05YmM3LTMwYzkxMTAzNGExMj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/08e2b715-28e0-408f-a2f5-673bedffc0b5?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzA4ZTJiNzE1LTI4ZTAtNDA4Zi1hMmY1LTY3M2JlZGZmYzBiNT9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:42:00 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "e20979b6-fc20-4041-b81f-7f7dfcb86436" + "0bdd3500-d6ba-45c5-b34d-4d92537307d0" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2567,56 +2498,56 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11887" + "11964" ], "x-ms-correlation-request-id": [ - "e5de6038-0c14-44b1-b5f4-5ce11018e232" + "39a4bfe7-3684-444b-aa6a-896705460019" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T114200Z:e5de6038-0c14-44b1-b5f4-5ce11018e232" + "WESTUS2:20221017T175836Z:39a4bfe7-3684-444b-aa6a-896705460019" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 17 Oct 2022 17:58:36 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/ff501916-c663-4e96-9bc7-30c911034a12?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2ZmNTAxOTE2LWM2NjMtNGU5Ni05YmM3LTMwYzkxMTAzNGExMj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/08e2b715-28e0-408f-a2f5-673bedffc0b5?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzA4ZTJiNzE1LTI4ZTAtNDA4Zi1hMmY1LTY3M2JlZGZmYzBiNT9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:42:00 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "59b995d2-e289-4673-91cc-9b0a5afebccc" + "49cb2ae8-0f67-451a-aacc-df86e378140b" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2624,20 +2555,26 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11886" + "11963" ], "x-ms-correlation-request-id": [ - "96465ea9-439b-4a78-b255-41e317133216" + "7ad8cf3c-c1cd-4ddc-9a89-e7ae4f1bd3c6" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T114201Z:96465ea9-439b-4a78-b255-41e317133216" + "WESTUS2:20221017T175836Z:7ad8cf3c-c1cd-4ddc-9a89-e7ae4f1bd3c6" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 17 Oct 2022 17:58:36 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -2646,6 +2583,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "0ee2a145-4d40-44f4-b764-67b40274f1ac" + "SubscriptionId": "3919658b-68ae-4509-8c17-6a2238340ae7" } } \ No newline at end of file diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/FirewallFunctionalTests/FirewallFunctionalTest.json b/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/FirewallFunctionalTests/FirewallFunctionalTest.json index 5b5765d08deb..679dd180b3a6 100644 --- a/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/FirewallFunctionalTests/FirewallFunctionalTest.json +++ b/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/FirewallFunctionalTests/FirewallFunctionalTest.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/register?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/register?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "79850bab-8ce4-40e8-8cbf-3c872ff69df1" + "d7242b40-928e-456b-9d0e-834d8028c921" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", + "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:54:46 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "f97d3075-74b5-4e97-b54a-994dc04bc915" + "da734fc8-97e4-4c65-aa2f-63e10032876d" ], "x-ms-correlation-request-id": [ - "f97d3075-74b5-4e97-b54a-994dc04bc915" + "da734fc8-97e4-4c65-aa2f-63e10032876d" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T115446Z:f97d3075-74b5-4e97-b54a-994dc04bc915" + "WESTUS2:20221017T171401Z:da734fc8-97e4-4c65-aa2f-63e10032876d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,8 +44,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Mon, 17 Oct 2022 17:14:01 GMT" + ], "Content-Length": [ - "13832" + "14731" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,25 +57,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateLinkResources\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateLinkResources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise/databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/EventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"France South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Qatar Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateLinkResources\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateLinkResources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise/databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/EventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e66ca1d4-70de-4809-9bb8-a5c285338785" + "131936b1-6201-405a-999e-f46bb51d27f1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", + "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -83,23 +83,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:54:46 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-request-id": [ - "35154136-6855-4e43-ba97-3bd038a9d4e6" + "afb3092a-044c-4bd4-b6c3-377f816745c3" ], "x-ms-correlation-request-id": [ - "35154136-6855-4e43-ba97-3bd038a9d4e6" + "afb3092a-044c-4bd4-b6c3-377f816745c3" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T115446Z:35154136-6855-4e43-ba97-3bd038a9d4e6" + "WESTUS2:20221017T171402Z:afb3092a-044c-4bd4-b6c3-377f816745c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -107,35 +104,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "13832" + "Date": [ + "Mon, 17 Oct 2022 17:14:01 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "14731" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateLinkResources\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateLinkResources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise/databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/EventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"France South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Qatar Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateLinkResources\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateLinkResources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise/databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/EventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/RedisFirewall1491?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlZ3JvdXBzL1JlZGlzRmlyZXdhbGwxNDkxP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/RedisFirewall5619?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlZ3JvdXBzL1JlZGlzRmlyZXdhbGw1NjE5P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6ab4c9b8-a3d0-499b-8364-a8ca7b46a802" + "b919092d-006a-4668-a412-19a3f13ffa88" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", + "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ @@ -149,9 +149,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:54:47 GMT" - ], "Pragma": [ "no-cache" ], @@ -159,13 +156,13 @@ "1199" ], "x-ms-request-id": [ - "c9998bd4-d446-45d0-a5bb-118a64837134" + "862c0872-92de-4498-bdef-661839aa2ac5" ], "x-ms-correlation-request-id": [ - "c9998bd4-d446-45d0-a5bb-118a64837134" + "862c0872-92de-4498-bdef-661839aa2ac5" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T115447Z:c9998bd4-d446-45d0-a5bb-118a64837134" + "WESTUS2:20221017T171403Z:862c0872-92de-4498-bdef-661839aa2ac5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -173,6 +170,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Mon, 17 Oct 2022 17:14:03 GMT" + ], "Content-Length": [ "187" ], @@ -183,25 +183,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisFirewall1491\",\r\n \"name\": \"RedisFirewall1491\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisFirewall5619\",\r\n \"name\": \"RedisFirewall5619\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/RedisFirewall1491?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlZ3JvdXBzL1JlZGlzRmlyZXdhbGwxNDkxP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/RedisFirewall5619?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlZ3JvdXBzL1JlZGlzRmlyZXdhbGw1NjE5P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3cfe4066-c5e5-4634-a4ae-1b87ba1f1f0a" + "195bb9ae-cd2e-4509-b22f-e9e1186a8638" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", + "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -209,23 +209,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:54:47 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-request-id": [ - "c85d7e24-e7a7-489c-a75f-a8b4f93255fc" + "7bc6760a-e248-4df1-97b9-ff91ccededcf" ], "x-ms-correlation-request-id": [ - "c85d7e24-e7a7-489c-a75f-a8b4f93255fc" + "7bc6760a-e248-4df1-97b9-ff91ccededcf" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T115447Z:c85d7e24-e7a7-489c-a75f-a8b4f93255fc" + "WESTUS2:20221017T171403Z:7bc6760a-e248-4df1-97b9-ff91ccededcf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -233,36 +230,39 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "187" + "Date": [ + "Mon, 17 Oct 2022 17:14:03 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "187" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisFirewall1491\",\r\n \"name\": \"RedisFirewall1491\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisFirewall5619\",\r\n \"name\": \"RedisFirewall5619\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisFirewall1491/providers/Microsoft.Cache/redis/RedisFirewall906?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGwxNDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNGaXJld2FsbDkwNj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisFirewall5619/providers/Microsoft.Cache/redis/RedisFirewall4912?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGw1NjE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNGaXJld2FsbDQ5MTI/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e084fde0-0c17-4f46-bfea-238f6a708bd4" + "0a1b3e19-675e-4033-8563-3634de1abf8e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -275,26 +275,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:54:50 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisFirewall1491/providers/Microsoft.Cache/redis/RedisFirewall906?api-version=2021-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisFirewall5619/providers/Microsoft.Cache/redis/RedisFirewall4912?api-version=2022-06-01" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01" ], "x-ms-request-id": [ - "0824da37-5f86-4532-81c0-f1e975dc0424" + "6cc0b381-d87a-43a0-b40a-88264cc7f518" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -302,14 +296,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1199" ], "x-ms-correlation-request-id": [ - "f8a6f670-fb6e-4218-81ee-4faef3875fc2" + "8eefd3ce-331c-4bef-bece-ac9568dd399c" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T115451Z:f8a6f670-fb6e-4218-81ee-4faef3875fc2" + "WESTUS2:20221017T171405Z:8eefd3ce-331c-4bef-bece-ac9568dd399c" + ], + "Date": [ + "Mon, 17 Oct 2022 17:14:04 GMT" ], "Content-Length": [ "1222" @@ -321,43 +321,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisFirewall1491/providers/Microsoft.Cache/Redis/RedisFirewall906\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisFirewall906\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"*****\",\r\n \"secondaryKey\": \"******\"\r\n },\r\n \"hostName\": \"RedisFirewall906.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisFirewall5619/providers/Microsoft.Cache/Redis/RedisFirewall4912\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisFirewall4912\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\"\r\n },\r\n \"hostName\": \"RedisFirewall4912.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDgyNGRhMzctNWY4Ni00NTMyLTgxYzAtZjFlOTc1ZGMwNDI0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmNjMGIzODEtZDg3YS00M2EwLWI0MGEtODgyNjRjYzdmNTE4P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:55:21 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01" ], "x-ms-request-id": [ - "3b2303f5-5648-45b6-8220-d228a36e395b" + "1106f3d3-e6c3-45d9-8d1b-0fb7bc19f74e" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -365,77 +359,20 @@ "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11870" - ], - "x-ms-correlation-request-id": [ - "4c15574d-b48f-461f-aa39-70f84b0b3ce9" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T115521Z:4c15574d-b48f-461f-aa39-70f84b0b3ce9" - ], - "Content-Length": [ - "353" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"name\": \"0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDgyNGRhMzctNWY4Ni00NTMyLTgxYzAtZjFlOTc1ZGMwNDI0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 26 Nov 2021 11:55:51 GMT" - ], - "Pragma": [ - "no-cache" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "3a0f0d24-ed0b-4347-99fa-f6b01a1ac608" - ], - "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11869" + "11999" ], "x-ms-correlation-request-id": [ - "ddde43f0-cc5d-466e-b947-84e480086322" + "ad4c32cd-35ba-435b-864a-1a8b16e427e8" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T115551Z:ddde43f0-cc5d-466e-b947-84e480086322" + "WESTUS2:20221017T171435Z:ad4c32cd-35ba-435b-864a-1a8b16e427e8" + ], + "Date": [ + "Mon, 17 Oct 2022 17:14:34 GMT" ], "Content-Length": [ "353" @@ -447,43 +384,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"name\": \"0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"name\": \"6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDgyNGRhMzctNWY4Ni00NTMyLTgxYzAtZjFlOTc1ZGMwNDI0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmNjMGIzODEtZDg3YS00M2EwLWI0MGEtODgyNjRjYzdmNTE4P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:56:22 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01" ], "x-ms-request-id": [ - "5de406ad-be2e-47a9-a856-da95d64df420" + "6afd7452-b9ac-49a4-a056-73c02d25d4d1" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -491,14 +422,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11868" + "11998" ], "x-ms-correlation-request-id": [ - "52a5d4bf-92a4-4147-b45c-e4a22e11b28b" + "a1519000-eb1c-4751-a774-cd1c475b10ed" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T115622Z:52a5d4bf-92a4-4147-b45c-e4a22e11b28b" + "WESTUS2:20221017T171505Z:a1519000-eb1c-4751-a774-cd1c475b10ed" + ], + "Date": [ + "Mon, 17 Oct 2022 17:15:04 GMT" ], "Content-Length": [ "353" @@ -510,43 +447,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"name\": \"0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"name\": \"6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDgyNGRhMzctNWY4Ni00NTMyLTgxYzAtZjFlOTc1ZGMwNDI0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmNjMGIzODEtZDg3YS00M2EwLWI0MGEtODgyNjRjYzdmNTE4P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:56:51 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01" ], "x-ms-request-id": [ - "cd21f133-7504-47c5-abce-242dfbbcd19b" + "bdcc74b5-b631-4756-ae2c-f1281844c05f" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -554,14 +485,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11867" + "11997" ], "x-ms-correlation-request-id": [ - "ba6a3f5e-0b7a-451b-aa1b-921622f011f5" + "1acd1698-d806-41a8-bf70-20b3a3e0dea8" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T115652Z:ba6a3f5e-0b7a-451b-aa1b-921622f011f5" + "WESTUS2:20221017T171535Z:1acd1698-d806-41a8-bf70-20b3a3e0dea8" + ], + "Date": [ + "Mon, 17 Oct 2022 17:15:34 GMT" ], "Content-Length": [ "353" @@ -573,43 +510,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"name\": \"0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"name\": \"6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDgyNGRhMzctNWY4Ni00NTMyLTgxYzAtZjFlOTc1ZGMwNDI0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmNjMGIzODEtZDg3YS00M2EwLWI0MGEtODgyNjRjYzdmNTE4P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:57:22 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01" ], "x-ms-request-id": [ - "8990c97e-87c8-4d1e-ba4c-e305da47b01c" + "111b2262-5f52-4434-ab35-47992a0dcbfe" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -617,14 +548,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11866" + "11996" ], "x-ms-correlation-request-id": [ - "f31fddec-e3be-48c5-9f1b-6b27d03efa09" + "2b39b8bd-e3c2-4f86-8ead-dbe1832f791a" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T115722Z:f31fddec-e3be-48c5-9f1b-6b27d03efa09" + "WESTUS2:20221017T171605Z:2b39b8bd-e3c2-4f86-8ead-dbe1832f791a" + ], + "Date": [ + "Mon, 17 Oct 2022 17:16:05 GMT" ], "Content-Length": [ "353" @@ -636,43 +573,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"name\": \"0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"name\": \"6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDgyNGRhMzctNWY4Ni00NTMyLTgxYzAtZjFlOTc1ZGMwNDI0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmNjMGIzODEtZDg3YS00M2EwLWI0MGEtODgyNjRjYzdmNTE4P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:57:52 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01" ], "x-ms-request-id": [ - "81482d0f-7ad0-4662-938c-0f2395bd1f04" + "58a48cfc-0a7b-40a8-8197-aa0657af370f" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -680,14 +611,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11865" + "11995" ], "x-ms-correlation-request-id": [ - "cc0def36-2aca-4edf-8300-46e61b1eb8f4" + "299da2e5-ec65-4dd7-8633-58ba85acc2a2" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T115753Z:cc0def36-2aca-4edf-8300-46e61b1eb8f4" + "WESTUS2:20221017T171635Z:299da2e5-ec65-4dd7-8633-58ba85acc2a2" + ], + "Date": [ + "Mon, 17 Oct 2022 17:16:34 GMT" ], "Content-Length": [ "353" @@ -699,43 +636,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"name\": \"0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"name\": \"6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDgyNGRhMzctNWY4Ni00NTMyLTgxYzAtZjFlOTc1ZGMwNDI0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmNjMGIzODEtZDg3YS00M2EwLWI0MGEtODgyNjRjYzdmNTE4P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:58:23 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01" ], "x-ms-request-id": [ - "dcf15234-8618-41bf-83d6-40a60923dbaa" + "90e58630-8ca8-4ff5-96a9-ca545ef94a47" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -743,14 +674,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11864" + "11994" ], "x-ms-correlation-request-id": [ - "84d4a7b9-f8e8-4b04-8f2d-3f34c8fc26de" + "098e7049-6641-41df-8bf2-ff52368d76b8" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T115823Z:84d4a7b9-f8e8-4b04-8f2d-3f34c8fc26de" + "WESTUS2:20221017T171705Z:098e7049-6641-41df-8bf2-ff52368d76b8" + ], + "Date": [ + "Mon, 17 Oct 2022 17:17:05 GMT" ], "Content-Length": [ "353" @@ -762,43 +699,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"name\": \"0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"name\": \"6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDgyNGRhMzctNWY4Ni00NTMyLTgxYzAtZjFlOTc1ZGMwNDI0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmNjMGIzODEtZDg3YS00M2EwLWI0MGEtODgyNjRjYzdmNTE4P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:58:55 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01" ], "x-ms-request-id": [ - "cd4edc32-4875-4bfd-be4b-b6aa096854ac" + "788a4dc8-c468-43b0-97c8-3a9e5f3bc3cc" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -806,14 +737,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11863" + "11993" ], "x-ms-correlation-request-id": [ - "cb1cc160-830d-43b5-9ee3-a52069a4cd87" + "d43838be-f315-40d4-8b17-ac34e1b5843e" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T115855Z:cb1cc160-830d-43b5-9ee3-a52069a4cd87" + "WESTUS2:20221017T171735Z:d43838be-f315-40d4-8b17-ac34e1b5843e" + ], + "Date": [ + "Mon, 17 Oct 2022 17:17:35 GMT" ], "Content-Length": [ "353" @@ -825,43 +762,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"name\": \"0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"name\": \"6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDgyNGRhMzctNWY4Ni00NTMyLTgxYzAtZjFlOTc1ZGMwNDI0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmNjMGIzODEtZDg3YS00M2EwLWI0MGEtODgyNjRjYzdmNTE4P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:59:26 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01" ], "x-ms-request-id": [ - "0ce1abce-9e7d-409f-9489-b9b9c6c45e03" + "49dd5b28-bd2f-4fa3-afa2-975dbb04d68d" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -869,14 +800,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11862" + "11992" ], "x-ms-correlation-request-id": [ - "80349f0e-4560-42ea-8628-bad3117fefff" + "cb261d27-0aab-40cd-8df0-a560d6539420" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T115926Z:80349f0e-4560-42ea-8628-bad3117fefff" + "WESTUS2:20221017T171805Z:cb261d27-0aab-40cd-8df0-a560d6539420" + ], + "Date": [ + "Mon, 17 Oct 2022 17:18:05 GMT" ], "Content-Length": [ "353" @@ -888,43 +825,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"name\": \"0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"name\": \"6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDgyNGRhMzctNWY4Ni00NTMyLTgxYzAtZjFlOTc1ZGMwNDI0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmNjMGIzODEtZDg3YS00M2EwLWI0MGEtODgyNjRjYzdmNTE4P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:59:56 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01" ], "x-ms-request-id": [ - "2ebca93d-8a5d-4bca-86fe-1795d4bcda35" + "2d23f482-911c-4ccb-bd3e-582de4238f2c" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -932,14 +863,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11861" + "11991" ], "x-ms-correlation-request-id": [ - "f75210d4-6ef9-4695-8ede-1fba365ead6e" + "73d23045-f641-43c3-8a86-535d835f87a5" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T115956Z:f75210d4-6ef9-4695-8ede-1fba365ead6e" + "WESTUS2:20221017T171836Z:73d23045-f641-43c3-8a86-535d835f87a5" + ], + "Date": [ + "Mon, 17 Oct 2022 17:18:35 GMT" ], "Content-Length": [ "353" @@ -951,43 +888,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"name\": \"0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"name\": \"6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDgyNGRhMzctNWY4Ni00NTMyLTgxYzAtZjFlOTc1ZGMwNDI0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmNjMGIzODEtZDg3YS00M2EwLWI0MGEtODgyNjRjYzdmNTE4P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:00:26 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01" ], "x-ms-request-id": [ - "0f271327-4afd-4b2f-a879-248142205bf4" + "3c601e5e-944f-47a0-9705-36b7135edec8" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -995,14 +926,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11860" + "11990" ], "x-ms-correlation-request-id": [ - "3e915b73-4b3e-426a-b730-c46fafa068e1" + "37480e91-cce0-4a11-813c-28e15586bbdf" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T120026Z:3e915b73-4b3e-426a-b730-c46fafa068e1" + "WESTUS2:20221017T171906Z:37480e91-cce0-4a11-813c-28e15586bbdf" + ], + "Date": [ + "Mon, 17 Oct 2022 17:19:05 GMT" ], "Content-Length": [ "353" @@ -1014,43 +951,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"name\": \"0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"name\": \"6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDgyNGRhMzctNWY4Ni00NTMyLTgxYzAtZjFlOTc1ZGMwNDI0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmNjMGIzODEtZDg3YS00M2EwLWI0MGEtODgyNjRjYzdmNTE4P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:00:56 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01" ], "x-ms-request-id": [ - "2ba7a0de-cf25-4236-bae2-ea8c7c337ceb" + "1c152fad-d2b5-498e-95fd-b2745f8c58b2" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1059,13 +990,19 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11859" + "11989" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "8ed24ab3-9afb-4092-a38e-1c90165aa9ea" + "922c505c-e744-4ee6-9247-3b3b13396370" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T120057Z:8ed24ab3-9afb-4092-a38e-1c90165aa9ea" + "WESTUS2:20221017T171936Z:922c505c-e744-4ee6-9247-3b3b13396370" + ], + "Date": [ + "Mon, 17 Oct 2022 17:19:35 GMT" ], "Content-Length": [ "353" @@ -1077,43 +1014,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"name\": \"0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"name\": \"6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDgyNGRhMzctNWY4Ni00NTMyLTgxYzAtZjFlOTc1ZGMwNDI0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmNjMGIzODEtZDg3YS00M2EwLWI0MGEtODgyNjRjYzdmNTE4P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:01:27 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01" ], "x-ms-request-id": [ - "f3c07544-10c8-4914-8045-9c5ab5008a7d" + "2009e055-637d-490f-bf60-1a226595b342" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1121,14 +1052,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11858" + "11988" ], "x-ms-correlation-request-id": [ - "27c739f4-c484-4321-b393-b56c7f5a4fa3" + "c2d12ab7-aa10-42a1-ad73-9a06e5372536" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T120127Z:27c739f4-c484-4321-b393-b56c7f5a4fa3" + "WESTUS2:20221017T172006Z:c2d12ab7-aa10-42a1-ad73-9a06e5372536" + ], + "Date": [ + "Mon, 17 Oct 2022 17:20:05 GMT" ], "Content-Length": [ "353" @@ -1140,43 +1077,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"name\": \"0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"name\": \"6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDgyNGRhMzctNWY4Ni00NTMyLTgxYzAtZjFlOTc1ZGMwNDI0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmNjMGIzODEtZDg3YS00M2EwLWI0MGEtODgyNjRjYzdmNTE4P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:01:57 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01" ], "x-ms-request-id": [ - "54d7eaa9-cc28-4db3-8132-5354133eb12d" + "5040ce92-e403-410a-a336-613a78316246" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1184,14 +1115,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11857" + "11987" ], "x-ms-correlation-request-id": [ - "56ae8c03-38c2-48c2-99f3-d368bc2f5688" + "23299163-13fa-4922-8013-50f66ac68dba" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T120157Z:56ae8c03-38c2-48c2-99f3-d368bc2f5688" + "WESTUS2:20221017T172036Z:23299163-13fa-4922-8013-50f66ac68dba" + ], + "Date": [ + "Mon, 17 Oct 2022 17:20:36 GMT" ], "Content-Length": [ "353" @@ -1203,43 +1140,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"name\": \"0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"name\": \"6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDgyNGRhMzctNWY4Ni00NTMyLTgxYzAtZjFlOTc1ZGMwNDI0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmNjMGIzODEtZDg3YS00M2EwLWI0MGEtODgyNjRjYzdmNTE4P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:02:27 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01" ], "x-ms-request-id": [ - "e5c631fc-d955-4ddb-a062-e3d65dbbd78f" + "a8681f48-f6e3-4b76-a033-05f45d2d3416" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1247,14 +1178,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11856" + "11986" ], "x-ms-correlation-request-id": [ - "154e2bf9-0858-49be-8101-1448e025067f" + "1e01a14d-c728-4db7-8dfa-7052c2f9b7cc" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T120228Z:154e2bf9-0858-49be-8101-1448e025067f" + "WESTUS2:20221017T172106Z:1e01a14d-c728-4db7-8dfa-7052c2f9b7cc" + ], + "Date": [ + "Mon, 17 Oct 2022 17:21:05 GMT" ], "Content-Length": [ "353" @@ -1266,43 +1203,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"name\": \"0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"name\": \"6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDgyNGRhMzctNWY4Ni00NTMyLTgxYzAtZjFlOTc1ZGMwNDI0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmNjMGIzODEtZDg3YS00M2EwLWI0MGEtODgyNjRjYzdmNTE4P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:02:58 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01" ], "x-ms-request-id": [ - "c2210d81-2eb5-48f3-acb8-bde7ab1d0235" + "05a084c1-b97a-4f81-a6dd-0a5866c2a581" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1310,14 +1241,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11855" + "11985" ], "x-ms-correlation-request-id": [ - "a268f1d6-28c5-451a-bb1f-5877ffd6948e" + "8ecb8272-b3f9-4872-8f4c-45b3d23f488d" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T120258Z:a268f1d6-28c5-451a-bb1f-5877ffd6948e" + "WESTUS2:20221017T172136Z:8ecb8272-b3f9-4872-8f4c-45b3d23f488d" + ], + "Date": [ + "Mon, 17 Oct 2022 17:21:35 GMT" ], "Content-Length": [ "353" @@ -1329,43 +1266,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"name\": \"0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"name\": \"6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDgyNGRhMzctNWY4Ni00NTMyLTgxYzAtZjFlOTc1ZGMwNDI0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmNjMGIzODEtZDg3YS00M2EwLWI0MGEtODgyNjRjYzdmNTE4P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:03:28 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01" ], "x-ms-request-id": [ - "b4e5c408-a63b-4838-8b00-1552dd181ef6" + "0fb3e336-bcfb-43e6-af1f-cdc72d58988b" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1373,14 +1304,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11854" + "11984" ], "x-ms-correlation-request-id": [ - "91254c3d-2b90-46ed-aff9-7d2ea7938a3c" + "20fb77b5-2532-4a67-80b0-93a4cb72f769" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T120328Z:91254c3d-2b90-46ed-aff9-7d2ea7938a3c" + "WESTUS2:20221017T172207Z:20fb77b5-2532-4a67-80b0-93a4cb72f769" + ], + "Date": [ + "Mon, 17 Oct 2022 17:22:06 GMT" ], "Content-Length": [ "353" @@ -1392,43 +1329,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"name\": \"0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"name\": \"6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDgyNGRhMzctNWY4Ni00NTMyLTgxYzAtZjFlOTc1ZGMwNDI0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmNjMGIzODEtZDg3YS00M2EwLWI0MGEtODgyNjRjYzdmNTE4P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:03:58 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01" ], "x-ms-request-id": [ - "3d9edcd9-f82c-41a0-98a0-b1c763da8167" + "b3c40d8b-e955-41c8-ab8e-8161ff6b1038" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1436,14 +1367,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11853" + "11983" ], "x-ms-correlation-request-id": [ - "f19eb145-22ff-44d1-b70b-3dddffca2a61" + "d2748d88-6e69-4d2f-89bd-10e5a564a77e" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T120359Z:f19eb145-22ff-44d1-b70b-3dddffca2a61" + "WESTUS2:20221017T172237Z:d2748d88-6e69-4d2f-89bd-10e5a564a77e" + ], + "Date": [ + "Mon, 17 Oct 2022 17:22:36 GMT" ], "Content-Length": [ "353" @@ -1455,43 +1392,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"name\": \"0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"name\": \"6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDgyNGRhMzctNWY4Ni00NTMyLTgxYzAtZjFlOTc1ZGMwNDI0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmNjMGIzODEtZDg3YS00M2EwLWI0MGEtODgyNjRjYzdmNTE4P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:04:28 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01" ], "x-ms-request-id": [ - "9d954ed1-09b6-46ef-8910-9949ea98567f" + "4416341e-11e7-4706-a440-7a4a03822ef2" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1499,14 +1430,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11852" + "11982" ], "x-ms-correlation-request-id": [ - "7e904ce4-ecfe-442d-baed-75accf680b32" + "24521b86-1603-4a34-b05b-3a7d57f1faac" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T120429Z:7e904ce4-ecfe-442d-baed-75accf680b32" + "WESTUS2:20221017T172307Z:24521b86-1603-4a34-b05b-3a7d57f1faac" + ], + "Date": [ + "Mon, 17 Oct 2022 17:23:06 GMT" ], "Content-Length": [ "353" @@ -1518,43 +1455,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"name\": \"0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"name\": \"6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDgyNGRhMzctNWY4Ni00NTMyLTgxYzAtZjFlOTc1ZGMwNDI0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmNjMGIzODEtZDg3YS00M2EwLWI0MGEtODgyNjRjYzdmNTE4P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:04:58 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01" ], "x-ms-request-id": [ - "580dad1a-3205-4039-a779-eb73ef9a27dd" + "304d6365-ebb0-46b0-9bdc-0203aaa21187" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1562,14 +1493,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11851" + "11981" ], "x-ms-correlation-request-id": [ - "1289e24b-c6fc-4f82-919e-8c9db9573e45" + "81cfb2e9-ee8b-4492-855e-1064f659e4bb" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T120459Z:1289e24b-c6fc-4f82-919e-8c9db9573e45" + "WESTUS2:20221017T172337Z:81cfb2e9-ee8b-4492-855e-1064f659e4bb" + ], + "Date": [ + "Mon, 17 Oct 2022 17:23:36 GMT" ], "Content-Length": [ "353" @@ -1581,43 +1518,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"name\": \"0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"name\": \"6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDgyNGRhMzctNWY4Ni00NTMyLTgxYzAtZjFlOTc1ZGMwNDI0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmNjMGIzODEtZDg3YS00M2EwLWI0MGEtODgyNjRjYzdmNTE4P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:05:29 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01" ], "x-ms-request-id": [ - "31faf961-1e17-4dc2-928f-5ad185b95dd8" + "95ffb2f4-0801-4d05-a26f-dc1b149ce179" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1625,14 +1556,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11850" + "11980" ], "x-ms-correlation-request-id": [ - "72e6e46b-1367-4e58-b0e1-e414205f0d7a" + "1e8f59b0-8ce3-48f3-9a07-cf97856057c8" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T120530Z:72e6e46b-1367-4e58-b0e1-e414205f0d7a" + "WESTUS2:20221017T172407Z:1e8f59b0-8ce3-48f3-9a07-cf97856057c8" + ], + "Date": [ + "Mon, 17 Oct 2022 17:24:07 GMT" ], "Content-Length": [ "353" @@ -1644,43 +1581,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"name\": \"0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"name\": \"6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDgyNGRhMzctNWY4Ni00NTMyLTgxYzAtZjFlOTc1ZGMwNDI0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmNjMGIzODEtZDg3YS00M2EwLWI0MGEtODgyNjRjYzdmNTE4P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:05:59 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01" ], "x-ms-request-id": [ - "10c9f111-5d0e-4a08-b74c-151ff541688a" + "44bbc54e-b088-483c-b5d7-c16933f0545b" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1688,14 +1619,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11849" + "11979" ], "x-ms-correlation-request-id": [ - "f3960652-1530-48d6-b111-a384aed2a8af" + "040185ab-9cbb-48e6-8605-823239d558cd" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T120600Z:f3960652-1530-48d6-b111-a384aed2a8af" + "WESTUS2:20221017T172437Z:040185ab-9cbb-48e6-8605-823239d558cd" + ], + "Date": [ + "Mon, 17 Oct 2022 17:24:37 GMT" ], "Content-Length": [ "353" @@ -1707,43 +1644,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"name\": \"0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"name\": \"6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDgyNGRhMzctNWY4Ni00NTMyLTgxYzAtZjFlOTc1ZGMwNDI0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmNjMGIzODEtZDg3YS00M2EwLWI0MGEtODgyNjRjYzdmNTE4P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:06:30 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01" ], "x-ms-request-id": [ - "63e3b72a-8017-4578-8967-406377456b2d" + "c1738a0c-04f1-442a-9424-d37dc4198c7a" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1751,14 +1682,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11848" + "11978" ], "x-ms-correlation-request-id": [ - "9972032b-db05-4be1-b42e-dfe67b2071fe" + "514aca35-a94e-4f95-8451-f43132ebf6dd" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T120630Z:9972032b-db05-4be1-b42e-dfe67b2071fe" + "WESTUS2:20221017T172507Z:514aca35-a94e-4f95-8451-f43132ebf6dd" + ], + "Date": [ + "Mon, 17 Oct 2022 17:25:07 GMT" ], "Content-Length": [ "353" @@ -1770,43 +1707,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"name\": \"0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"name\": \"6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDgyNGRhMzctNWY4Ni00NTMyLTgxYzAtZjFlOTc1ZGMwNDI0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmNjMGIzODEtZDg3YS00M2EwLWI0MGEtODgyNjRjYzdmNTE4P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:07:00 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01" ], "x-ms-request-id": [ - "7af9a14a-e7e2-4ede-874e-2686cb38f089" + "4ad0e31c-9be6-4f65-8baf-4f56c876dfb3" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1815,13 +1746,19 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11847" + "11977" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "e28eeca5-67b3-41b5-918c-99861586a80d" + "ba2d9eae-9b1a-442f-ae85-0afe8e17cabb" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T120701Z:e28eeca5-67b3-41b5-918c-99861586a80d" + "WESTUS2:20221017T172537Z:ba2d9eae-9b1a-442f-ae85-0afe8e17cabb" + ], + "Date": [ + "Mon, 17 Oct 2022 17:25:37 GMT" ], "Content-Length": [ "353" @@ -1833,43 +1770,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"name\": \"0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"name\": \"6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDgyNGRhMzctNWY4Ni00NTMyLTgxYzAtZjFlOTc1ZGMwNDI0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmNjMGIzODEtZDg3YS00M2EwLWI0MGEtODgyNjRjYzdmNTE4P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:07:30 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518?api-version=2022-06-01" ], "x-ms-request-id": [ - "fc068f5f-a6ed-40ff-a9de-db737956fe9e" + "e91bada2-b92b-4a74-a012-0f07947617b7" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1877,14 +1808,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11846" + "11976" ], "x-ms-correlation-request-id": [ - "0519dd9a-e31b-49ac-ad7a-51be3dfd453f" + "d9af8745-0c7d-4f43-b2ad-03ef9b442497" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T120731Z:0519dd9a-e31b-49ac-ad7a-51be3dfd453f" + "WESTUS2:20221017T172607Z:d9af8745-0c7d-4f43-b2ad-03ef9b442497" + ], + "Date": [ + "Mon, 17 Oct 2022 17:26:07 GMT" ], "Content-Length": [ "352" @@ -1896,40 +1833,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"name\": \"0824da37-5f86-4532-81c0-f1e975dc0424\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"name\": \"6cc0b381-d87a-43a0-b40a-88264cc7f518\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisFirewall1491/providers/Microsoft.Cache/redis/RedisFirewall906?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGwxNDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNGaXJld2FsbDkwNj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisFirewall5619/providers/Microsoft.Cache/redis/RedisFirewall4912?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGw1NjE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNGaXJld2FsbDQ5MTI/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:07:32 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "622fdd70-2523-4012-ae62-70bb37676f1d" + "67d454a7-f962-4951-beea-2c89d5f1f0d3" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1937,14 +1868,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11845" + "11975" ], "x-ms-correlation-request-id": [ - "380bdd5a-7aa7-4c18-8a34-e817e536cc3e" + "5d027647-3562-4a87-ac1b-cba8fca4cde5" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T120732Z:380bdd5a-7aa7-4c18-8a34-e817e536cc3e" + "WESTUS2:20221017T172608Z:5d027647-3562-4a87-ac1b-cba8fca4cde5" + ], + "Date": [ + "Mon, 17 Oct 2022 17:26:07 GMT" ], "Content-Length": [ "779" @@ -1956,46 +1893,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisFirewall1491/providers/Microsoft.Cache/Redis/RedisFirewall906\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisFirewall906\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisFirewall906.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisFirewall5619/providers/Microsoft.Cache/Redis/RedisFirewall4912\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisFirewall4912\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisFirewall4912.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisFirewall1491/providers/Microsoft.Cache/redis/RedisFirewall906?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGwxNDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNGaXJld2FsbDkwNj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisFirewall5619/providers/Microsoft.Cache/redis/RedisFirewall4912?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGw1NjE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNGaXJld2FsbDQ5MTI/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "98e89616-afff-48ba-aa63-b95b1278096a" + "dfde8c3e-50cc-4cf9-b507-88e8973f36be" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:07:32 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "200ba1c0-b8c1-4f58-83fa-1ac6eb6e3433" + "4e28fbf6-82b4-4acc-89d2-5b55365c351f" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2003,14 +1934,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11844" + "11974" ], "x-ms-correlation-request-id": [ - "43128172-49c9-4d46-8198-8a514fa5728f" + "0e7efee5-139c-4fd5-ad43-9a54cbbfa355" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T120732Z:43128172-49c9-4d46-8198-8a514fa5728f" + "WESTUS2:20221017T172608Z:0e7efee5-139c-4fd5-ad43-9a54cbbfa355" + ], + "Date": [ + "Mon, 17 Oct 2022 17:26:07 GMT" ], "Content-Length": [ "779" @@ -2022,26 +1959,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisFirewall1491/providers/Microsoft.Cache/Redis/RedisFirewall906\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisFirewall906\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisFirewall906.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisFirewall5619/providers/Microsoft.Cache/Redis/RedisFirewall4912\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisFirewall4912\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisFirewall4912.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisFirewall1491/providers/Microsoft.Cache/redis/RedisFirewall906/firewallRules/RuleOne?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGwxNDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNGaXJld2FsbDkwNi9maXJld2FsbFJ1bGVzL1J1bGVPbmU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisFirewall5619/providers/Microsoft.Cache/redis/RedisFirewall4912/firewallRules/RuleOne?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGw1NjE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNGaXJld2FsbDQ5MTIvZmlyZXdhbGxSdWxlcy9SdWxlT25lP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.0\",\r\n \"endIP\": \"10.0.0.32\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "575a9bb3-7128-4828-b0a9-a852203954ca" + "ae6ef203-e9c3-493a-bbaa-d134d5062f27" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2054,23 +1991,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:07:33 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisFirewall1491/providers/Microsoft.Cache/redis/RedisFirewall906/firewallRules/RuleOne?api-version=2021-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisFirewall5619/providers/Microsoft.Cache/redis/RedisFirewall4912/firewallRules/RuleOne?api-version=2022-06-01" ], "x-ms-request-id": [ - "3666ca02-e723-4958-b0f1-1dce1f3b8ac9" + "ee56ddeb-8cac-4b67-a81a-6c6b4aa2bd24" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2078,17 +2009,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1198" ], "x-ms-correlation-request-id": [ - "c8607b66-ca1b-4610-b8b2-6a326ca67d5e" + "2f1bfa3f-b107-41a3-abcb-72bf7607fab0" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T120733Z:c8607b66-ca1b-4610-b8b2-6a326ca67d5e" + "WESTUS2:20221017T172608Z:2f1bfa3f-b107-41a3-abcb-72bf7607fab0" + ], + "Date": [ + "Mon, 17 Oct 2022 17:26:08 GMT" ], "Content-Length": [ - "299" + "301" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2097,26 +2034,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.0\",\r\n \"endIP\": \"10.0.0.32\"\r\n },\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisFirewall1491/providers/Microsoft.Cache/redis/RedisFirewall906/firewallRules/RuleOne\",\r\n \"name\": \"RedisFirewall906/RuleOne\",\r\n \"type\": \"Microsoft.Cache/redis/firewallRules\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.0\",\r\n \"endIP\": \"10.0.0.32\"\r\n },\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisFirewall5619/providers/Microsoft.Cache/redis/RedisFirewall4912/firewallRules/RuleOne\",\r\n \"name\": \"RedisFirewall4912/RuleOne\",\r\n \"type\": \"Microsoft.Cache/redis/firewallRules\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisFirewall1491/providers/Microsoft.Cache/redis/RedisFirewall906/firewallRules/RuleTwo?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGwxNDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNGaXJld2FsbDkwNi9maXJld2FsbFJ1bGVzL1J1bGVUd28/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisFirewall5619/providers/Microsoft.Cache/redis/RedisFirewall4912/firewallRules/RuleTwo?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGw1NjE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNGaXJld2FsbDQ5MTIvZmlyZXdhbGxSdWxlcy9SdWxlVHdvP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.64\",\r\n \"endIP\": \"10.0.0.128\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9b7a668f-a1dc-4313-a6fd-21f0dac78956" + "28a2f231-bd2a-4590-93ba-5dc29e48786a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2129,23 +2066,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:07:33 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisFirewall1491/providers/Microsoft.Cache/redis/RedisFirewall906/firewallRules/RuleTwo?api-version=2021-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisFirewall5619/providers/Microsoft.Cache/redis/RedisFirewall4912/firewallRules/RuleTwo?api-version=2022-06-01" ], "x-ms-request-id": [ - "29c34346-d181-49e6-994e-8ef39360ddc2" + "88316d75-f5a3-4421-9a56-b4933f5e869d" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2153,17 +2084,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1197" ], "x-ms-correlation-request-id": [ - "121f6a1c-8658-44fc-82e8-8285f281e8e4" + "d1f58dc0-43cf-4aaf-a8ef-3ff833323298" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T120733Z:121f6a1c-8658-44fc-82e8-8285f281e8e4" + "WESTUS2:20221017T172609Z:d1f58dc0-43cf-4aaf-a8ef-3ff833323298" + ], + "Date": [ + "Mon, 17 Oct 2022 17:26:08 GMT" ], "Content-Length": [ - "301" + "303" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2172,46 +2109,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.64\",\r\n \"endIP\": \"10.0.0.128\"\r\n },\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisFirewall1491/providers/Microsoft.Cache/redis/RedisFirewall906/firewallRules/RuleTwo\",\r\n \"name\": \"RedisFirewall906/RuleTwo\",\r\n \"type\": \"Microsoft.Cache/redis/firewallRules\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.64\",\r\n \"endIP\": \"10.0.0.128\"\r\n },\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisFirewall5619/providers/Microsoft.Cache/redis/RedisFirewall4912/firewallRules/RuleTwo\",\r\n \"name\": \"RedisFirewall4912/RuleTwo\",\r\n \"type\": \"Microsoft.Cache/redis/firewallRules\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisFirewall1491/providers/Microsoft.Cache/redis/RedisFirewall906/firewallRules/RuleOne?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGwxNDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNGaXJld2FsbDkwNi9maXJld2FsbFJ1bGVzL1J1bGVPbmU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisFirewall5619/providers/Microsoft.Cache/redis/RedisFirewall4912/firewallRules/RuleOne?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGw1NjE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNGaXJld2FsbDQ5MTIvZmlyZXdhbGxSdWxlcy9SdWxlT25lP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b337cc59-eaea-4236-a861-da8c9ef3e96c" + "f207a852-154a-4712-b825-6132b2fdec6f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:07:33 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "55c8e29a-8868-40f3-8935-8399b1fbd4b3" + "9f2a09d8-f0ea-4623-b862-42a7d8976805" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2219,17 +2150,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11843" + "11973" ], "x-ms-correlation-request-id": [ - "57a94e75-174b-4b68-85d0-64404343fd90" + "8e123798-5c07-4ad5-b2b8-1276aa43b327" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T120733Z:57a94e75-174b-4b68-85d0-64404343fd90" + "WESTUS2:20221017T172609Z:8e123798-5c07-4ad5-b2b8-1276aa43b327" + ], + "Date": [ + "Mon, 17 Oct 2022 17:26:08 GMT" ], "Content-Length": [ - "299" + "301" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2238,46 +2175,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisFirewall1491/providers/Microsoft.Cache/Redis/RedisFirewall906/firewallRules/RuleOne\",\r\n \"name\": \"RedisFirewall906/RuleOne\",\r\n \"type\": \"Microsoft.Cache/Redis/firewallRules\",\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.0\",\r\n \"endIP\": \"10.0.0.32\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisFirewall5619/providers/Microsoft.Cache/Redis/RedisFirewall4912/firewallRules/RuleOne\",\r\n \"name\": \"RedisFirewall4912/RuleOne\",\r\n \"type\": \"Microsoft.Cache/Redis/firewallRules\",\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.0\",\r\n \"endIP\": \"10.0.0.32\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisFirewall1491/providers/Microsoft.Cache/redis/RedisFirewall906/firewallRules/RuleTwo?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGwxNDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNGaXJld2FsbDkwNi9maXJld2FsbFJ1bGVzL1J1bGVUd28/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisFirewall5619/providers/Microsoft.Cache/redis/RedisFirewall4912/firewallRules/RuleTwo?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGw1NjE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNGaXJld2FsbDQ5MTIvZmlyZXdhbGxSdWxlcy9SdWxlVHdvP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "005d3fe5-60b2-492c-8748-1e3aa393a5cf" + "0aabfd68-973b-418c-ae29-0f8ee5987752" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:07:34 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "a6e97fa0-48a6-411f-ab16-aa8da5508b44" + "6d2cd587-b345-46bc-a7a2-5efbfa09610d" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2285,17 +2216,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11842" + "11972" ], "x-ms-correlation-request-id": [ - "96591c7f-58dd-470c-8256-fb525017d677" + "6d1dfbbd-e87b-48b8-922a-3e025e3eba2a" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T120734Z:96591c7f-58dd-470c-8256-fb525017d677" + "WESTUS2:20221017T172609Z:6d1dfbbd-e87b-48b8-922a-3e025e3eba2a" + ], + "Date": [ + "Mon, 17 Oct 2022 17:26:08 GMT" ], "Content-Length": [ - "301" + "303" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2304,46 +2241,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisFirewall1491/providers/Microsoft.Cache/Redis/RedisFirewall906/firewallRules/RuleTwo\",\r\n \"name\": \"RedisFirewall906/RuleTwo\",\r\n \"type\": \"Microsoft.Cache/Redis/firewallRules\",\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.64\",\r\n \"endIP\": \"10.0.0.128\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisFirewall5619/providers/Microsoft.Cache/Redis/RedisFirewall4912/firewallRules/RuleTwo\",\r\n \"name\": \"RedisFirewall4912/RuleTwo\",\r\n \"type\": \"Microsoft.Cache/Redis/firewallRules\",\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.64\",\r\n \"endIP\": \"10.0.0.128\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisFirewall1491/providers/Microsoft.Cache/redis/RedisFirewall906/firewallRules?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGwxNDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNGaXJld2FsbDkwNi9maXJld2FsbFJ1bGVzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisFirewall5619/providers/Microsoft.Cache/redis/RedisFirewall4912/firewallRules?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGw1NjE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNGaXJld2FsbDQ5MTIvZmlyZXdhbGxSdWxlcz9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b445f1e-f415-490f-b06c-234dc30c39e1" + "0a1addd4-fa83-49c0-8977-e081ef1c82d7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:07:34 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "2995b278-1906-4087-bf52-369582d1946c" + "06eed131-f3ed-4040-b560-3c676f8fd123" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2351,17 +2282,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11841" + "11971" ], "x-ms-correlation-request-id": [ - "ced338b8-3a61-44ac-839c-919362739c2f" + "3cc57a81-2a53-457b-83c4-6ef4fea2d9ae" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T120734Z:ced338b8-3a61-44ac-839c-919362739c2f" + "WESTUS2:20221017T172609Z:3cc57a81-2a53-457b-83c4-6ef4fea2d9ae" + ], + "Date": [ + "Mon, 17 Oct 2022 17:26:08 GMT" ], "Content-Length": [ - "613" + "617" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2370,46 +2307,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisFirewall1491/providers/Microsoft.Cache/Redis/RedisFirewall906/firewallRules/RuleOne\",\r\n \"name\": \"RedisFirewall906/RuleOne\",\r\n \"type\": \"Microsoft.Cache/Redis/firewallRules\",\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.0\",\r\n \"endIP\": \"10.0.0.32\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisFirewall1491/providers/Microsoft.Cache/Redis/RedisFirewall906/firewallRules/RuleTwo\",\r\n \"name\": \"RedisFirewall906/RuleTwo\",\r\n \"type\": \"Microsoft.Cache/Redis/firewallRules\",\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.64\",\r\n \"endIP\": \"10.0.0.128\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisFirewall5619/providers/Microsoft.Cache/Redis/RedisFirewall4912/firewallRules/RuleOne\",\r\n \"name\": \"RedisFirewall4912/RuleOne\",\r\n \"type\": \"Microsoft.Cache/Redis/firewallRules\",\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.0\",\r\n \"endIP\": \"10.0.0.32\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisFirewall5619/providers/Microsoft.Cache/Redis/RedisFirewall4912/firewallRules/RuleTwo\",\r\n \"name\": \"RedisFirewall4912/RuleTwo\",\r\n \"type\": \"Microsoft.Cache/Redis/firewallRules\",\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.64\",\r\n \"endIP\": \"10.0.0.128\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisFirewall1491/providers/Microsoft.Cache/redis/RedisFirewall906/firewallRules?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGwxNDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNGaXJld2FsbDkwNi9maXJld2FsbFJ1bGVzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisFirewall5619/providers/Microsoft.Cache/redis/RedisFirewall4912/firewallRules?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGw1NjE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNGaXJld2FsbDQ5MTIvZmlyZXdhbGxSdWxlcz9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14e565b0-7cf4-41c3-94bd-1e298a37d70f" + "3da98607-5593-4afb-a21b-5289d43f8d5b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:07:41 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "f97e817c-2805-40dd-814e-667d3efaab31" + "b9c2cb52-908b-4875-a086-d62acddf4718" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2417,17 +2348,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11840" + "11970" ], "x-ms-correlation-request-id": [ - "cf2f246f-a791-49c5-8716-9368e83460e4" + "a7793ea1-912d-4a2c-bd08-dfa9f5d6e290" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T120741Z:cf2f246f-a791-49c5-8716-9368e83460e4" + "WESTUS2:20221017T172615Z:a7793ea1-912d-4a2c-bd08-dfa9f5d6e290" + ], + "Date": [ + "Mon, 17 Oct 2022 17:26:15 GMT" ], "Content-Length": [ - "311" + "313" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2436,46 +2373,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisFirewall1491/providers/Microsoft.Cache/Redis/RedisFirewall906/firewallRules/RuleOne\",\r\n \"name\": \"RedisFirewall906/RuleOne\",\r\n \"type\": \"Microsoft.Cache/Redis/firewallRules\",\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.0\",\r\n \"endIP\": \"10.0.0.32\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisFirewall5619/providers/Microsoft.Cache/Redis/RedisFirewall4912/firewallRules/RuleOne\",\r\n \"name\": \"RedisFirewall4912/RuleOne\",\r\n \"type\": \"Microsoft.Cache/Redis/firewallRules\",\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.0\",\r\n \"endIP\": \"10.0.0.32\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisFirewall1491/providers/Microsoft.Cache/redis/RedisFirewall906/firewallRules/RuleTwo?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGwxNDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNGaXJld2FsbDkwNi9maXJld2FsbFJ1bGVzL1J1bGVUd28/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisFirewall5619/providers/Microsoft.Cache/redis/RedisFirewall4912/firewallRules/RuleTwo?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGw1NjE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNGaXJld2FsbDQ5MTIvZmlyZXdhbGxSdWxlcy9SdWxlVHdvP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "63df62f9-01b6-4162-8c59-2e125676f851" + "86b9e016-0d87-4d4c-a059-577955c74cf7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:07:34 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "ce313685-4819-4c20-a0e5-369a6abac8c5" + "8918fd06-183f-4644-82d1-d6fc3188a9de" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2483,20 +2414,26 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "14999" ], "x-ms-correlation-request-id": [ - "13f28231-099a-4502-afd8-a39d11cd8d0d" + "c5545eaa-46b0-4177-b2ac-947cc73783c3" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T120734Z:13f28231-099a-4502-afd8-a39d11cd8d0d" + "WESTUS2:20221017T172609Z:c5545eaa-46b0-4177-b2ac-947cc73783c3" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 17 Oct 2022 17:26:09 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -2505,11 +2442,11 @@ ], "Names": { "FirewallFunctionalTest": [ - "RedisFirewall1491", - "RedisFirewall906" + "RedisFirewall5619", + "RedisFirewall4912" ] }, "Variables": { - "SubscriptionId": "0ee2a145-4d40-44f4-b764-67b40274f1ac" + "SubscriptionId": "3919658b-68ae-4509-8c17-6a2238340ae7" } } \ No newline at end of file diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/GeoReplicationFunctionalTests/GeoReplicationFunctionalTest.json b/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/GeoReplicationFunctionalTests/GeoReplicationFunctionalTest.json index 5ef561b637b5..56e6bec9f698 100644 --- a/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/GeoReplicationFunctionalTests/GeoReplicationFunctionalTest.json +++ b/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/GeoReplicationFunctionalTests/GeoReplicationFunctionalTest.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/register?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/register?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "48be6884-8deb-492f-9093-2340f37a7ff9" + "8d47c313-8b85-40f9-a0a3-b2624795c1e5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", + "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:23:49 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-request-id": [ - "bf6cdead-b0c8-4a33-b050-717d13e68426" + "210b3587-0dc6-488f-a34e-0536ac228e0c" ], "x-ms-correlation-request-id": [ - "bf6cdead-b0c8-4a33-b050-717d13e68426" + "210b3587-0dc6-488f-a34e-0536ac228e0c" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T122349Z:bf6cdead-b0c8-4a33-b050-717d13e68426" + "WESTUS2:20221017T185252Z:210b3587-0dc6-488f-a34e-0536ac228e0c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,8 +44,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Mon, 17 Oct 2022 18:52:52 GMT" + ], "Content-Length": [ - "13832" + "14731" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,25 +57,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateLinkResources\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateLinkResources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise/databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/EventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"France South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Qatar Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateLinkResources\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateLinkResources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise/databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/EventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "045d3eba-11cf-4d8d-8c56-348d9624f924" + "0795e97f-2d5e-47fc-8d78-ae456b8fb8ee" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", + "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -83,23 +83,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:23:49 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11902" + "11999" ], "x-ms-request-id": [ - "9b835a7f-2905-4226-94d2-2c740688eed5" + "504e0a7d-4535-41e3-8afa-231b5c4f23f7" ], "x-ms-correlation-request-id": [ - "9b835a7f-2905-4226-94d2-2c740688eed5" + "504e0a7d-4535-41e3-8afa-231b5c4f23f7" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T122349Z:9b835a7f-2905-4226-94d2-2c740688eed5" + "WESTUS2:20221017T185253Z:504e0a7d-4535-41e3-8afa-231b5c4f23f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -107,35 +104,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "13832" + "Date": [ + "Mon, 17 Oct 2022 18:52:52 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "14731" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateLinkResources\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateLinkResources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise/databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/EventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"France South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Qatar Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateLinkResources\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateLinkResources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise/databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/EventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/RedisGeo4525?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlZ3JvdXBzL1JlZGlzR2VvNDUyNT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/RedisGeo3153?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlZ3JvdXBzL1JlZGlzR2VvMzE1Mz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e6c13964-73a8-484b-a2c1-abeb5cc18f01" + "bb3abcdf-8b6a-4c22-b113-7401310c22fe" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", + "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ @@ -149,23 +149,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:23:50 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1199" ], "x-ms-request-id": [ - "ebb9c5d5-c1b2-405f-8a49-ca6ab6ede236" + "c9910760-10db-4312-b427-3c4d84e12499" ], "x-ms-correlation-request-id": [ - "ebb9c5d5-c1b2-405f-8a49-ca6ab6ede236" + "c9910760-10db-4312-b427-3c4d84e12499" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T122350Z:ebb9c5d5-c1b2-405f-8a49-ca6ab6ede236" + "WESTUS2:20221017T185253Z:c9910760-10db-4312-b427-3c4d84e12499" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -173,6 +170,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Mon, 17 Oct 2022 18:52:53 GMT" + ], "Content-Length": [ "177" ], @@ -183,25 +183,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525\",\r\n \"name\": \"RedisGeo4525\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153\",\r\n \"name\": \"RedisGeo3153\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/RedisGeo4525?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlZ3JvdXBzL1JlZGlzR2VvNDUyNT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/RedisGeo3153?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlZ3JvdXBzL1JlZGlzR2VvMzE1Mz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cdb11c5a-31a2-40fa-85a2-0119b072ec70" + "1bfc6838-923a-4ebb-a471-cf365fa6b346" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", + "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -209,23 +209,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:23:50 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11901" + "11998" ], "x-ms-request-id": [ - "f58524bc-47c2-4a07-abbf-85f99bc66b81" + "ba5b0439-bf51-4621-ab74-8d6fa078adb5" ], "x-ms-correlation-request-id": [ - "f58524bc-47c2-4a07-abbf-85f99bc66b81" + "ba5b0439-bf51-4621-ab74-8d6fa078adb5" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T122351Z:f58524bc-47c2-4a07-abbf-85f99bc66b81" + "WESTUS2:20221017T185253Z:ba5b0439-bf51-4621-ab74-8d6fa078adb5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -233,36 +230,39 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "177" + "Date": [ + "Mon, 17 Oct 2022 18:52:53 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "177" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525\",\r\n \"name\": \"RedisGeo4525\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153\",\r\n \"name\": \"RedisGeo3153\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODk/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "278de4bc-877a-4de8-94e0-03cf11962ebc" + "3c204928-cdca-42fa-a882-716f7096bdf3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -275,26 +275,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:23:55 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803?api-version=2021-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589?api-version=2022-06-01" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/d89b291f-ad9a-4f46-8f70-cda7a10b1f0c?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/533216b3-00e1-466a-846e-cb9c102acd9c?api-version=2022-06-01" ], "x-ms-request-id": [ - "d89b291f-ad9a-4f46-8f70-cda7a10b1f0c" + "533216b3-00e1-466a-846e-cb9c102acd9c" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -302,17 +296,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1199" ], "x-ms-correlation-request-id": [ - "b94bcc61-6fe3-4772-ac8b-5c48027127c9" + "cea84045-8110-41af-8485-867091465954" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T122355Z:b94bcc61-6fe3-4772-ac8b-5c48027127c9" + "WESTUS2:20221017T185256Z:cea84045-8110-41af-8485-867091465954" + ], + "Date": [ + "Mon, 17 Oct 2022 18:52:55 GMT" ], "Content-Length": [ - "1208" + "1205" ], "Content-Type": [ "application/json; charset=utf-8" @@ -321,26 +321,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo11803\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"*****\",\r\n \"secondaryKey\": \"******\"\r\n },\r\n \"hostName\": \"RedisGeo11803.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo13589\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\"\r\n },\r\n \"hostName\": \"RedisGeo13589.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjYxOTQ/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjQ0MDA/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n }\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ada407c1-2594-4337-bbdf-6329bfa705ec" + "a6b47494-ddef-4e60-b914-7c5a7fbaa9ba" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -353,26 +353,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:23:57 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo26194?api-version=2021-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo24400?api-version=2022-06-01" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/East US/asyncOperations/6485e8be-886c-4f29-87f3-f7d95f0d1d0e?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East US/asyncOperations/bf80b4f9-0e6d-4ceb-ba4b-bdb08a699bfe?api-version=2022-06-01" ], "x-ms-request-id": [ - "6485e8be-886c-4f29-87f3-f7d95f0d1d0e" + "bf80b4f9-0e6d-4ceb-ba4b-bdb08a699bfe" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -380,17 +374,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1198" ], "x-ms-correlation-request-id": [ - "b64df282-cb46-4675-8fab-d94e8ffa91a9" + "073a31c6-964f-4b6f-b801-cbb82ddffdfa" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T122357Z:b64df282-cb46-4675-8fab-d94e8ffa91a9" + "WESTUS2:20221017T185258Z:073a31c6-964f-4b6f-b801-cbb82ddffdfa" + ], + "Date": [ + "Mon, 17 Oct 2022 18:52:57 GMT" ], "Content-Length": [ - "1208" + "1205" ], "Content-Type": [ "application/json; charset=utf-8" @@ -399,46 +399,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"*****\",\r\n \"secondaryKey\": \"******\"\r\n },\r\n \"hostName\": \"RedisGeo26194.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\"\r\n },\r\n \"hostName\": \"RedisGeo24400.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODk/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7669716c-6586-4e25-9cc1-5aa0820d74b2" + "c51b861a-a124-4960-aa6c-e1e688c03b4d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:23:57 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "92b6d56a-8d83-4f04-bb2d-c6c217ec124f" + "43752755-c5a8-4a2c-a590-b65f8936eb69" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -446,17 +440,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11839" + "11999" ], "x-ms-correlation-request-id": [ - "135c3be9-f188-461f-9b2c-05e19d03259a" + "8c80e756-46af-46bb-b221-995531f54769" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T122357Z:135c3be9-f188-461f-9b2c-05e19d03259a" + "WESTUS2:20221017T185259Z:8c80e756-46af-46bb-b221-995531f54769" + ], + "Date": [ + "Mon, 17 Oct 2022 18:52:58 GMT" ], "Content-Length": [ - "766" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -465,46 +465,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo11803\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo11803.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo13589\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13589.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODk/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bb253ece-bbfb-47be-8809-b1b9fc9dd4ac" + "c71af2c5-45f8-4d2d-ba79-0ceaae4529d9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:24:28 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "8631afb1-aafd-433c-87b6-ae62ae665184" + "b4d66a8f-fda9-4e13-be21-ed0883869e0a" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -512,17 +506,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11837" + "11997" ], "x-ms-correlation-request-id": [ - "5227aa6b-1576-415a-929d-22161fff07da" + "7986fb8b-8bc5-40ca-b4ac-60b85307d0dc" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T122428Z:5227aa6b-1576-415a-929d-22161fff07da" + "WESTUS2:20221017T185329Z:7986fb8b-8bc5-40ca-b4ac-60b85307d0dc" + ], + "Date": [ + "Mon, 17 Oct 2022 18:53:29 GMT" ], "Content-Length": [ - "766" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -531,46 +531,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo11803\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo11803.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo13589\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13589.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODk/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "923b0933-1880-4237-ae98-b406a1a3e431" + "c332dc6c-ca1e-42a5-8f68-5fc9d507a511" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:24:59 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "aa757947-5fe7-42dd-a51b-3d4f3dd2ef55" + "45289ffc-43f1-4139-8835-24d369f4154c" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -578,17 +572,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11835" + "11995" ], "x-ms-correlation-request-id": [ - "a44fad05-249f-4ec1-a4f4-9de29c71adaa" + "673d4066-1d2f-425f-bba3-9be9b3a0374e" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T122459Z:a44fad05-249f-4ec1-a4f4-9de29c71adaa" + "WESTUS2:20221017T185359Z:673d4066-1d2f-425f-bba3-9be9b3a0374e" + ], + "Date": [ + "Mon, 17 Oct 2022 18:53:59 GMT" ], "Content-Length": [ - "766" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -597,46 +597,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo11803\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo11803.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo13589\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13589.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODk/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77cb780d-2da4-41c4-85e5-fa6deff5b8fa" + "982532e3-259a-4d82-abd3-c7b191a334e6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:25:29 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "d6d004ee-c5f3-432e-9b94-5334bab44a9e" + "3326d8e1-9b0f-4017-a10f-c945eadd276e" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -644,17 +638,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11850" + "11993" ], "x-ms-correlation-request-id": [ - "b2def11f-e323-49a8-bd83-d1c2eded3cf9" + "082c23ac-b710-4929-bcc6-02929802fffb" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T122529Z:b2def11f-e323-49a8-bd83-d1c2eded3cf9" + "WESTUS2:20221017T185429Z:082c23ac-b710-4929-bcc6-02929802fffb" + ], + "Date": [ + "Mon, 17 Oct 2022 18:54:28 GMT" ], "Content-Length": [ - "766" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -663,46 +663,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo11803\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo11803.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo13589\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13589.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODk/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71af1020-36b7-488b-b408-fba47b620404" + "d2e24b66-428e-4dc9-b5e7-14902ccb1001" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:25:59 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "0032b5f3-9150-43b1-868e-a91ac83ab928" + "30437869-503e-4bcc-aa67-6749a986823b" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -710,17 +704,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11848" + "11991" ], "x-ms-correlation-request-id": [ - "6f22e84c-bbae-4ca2-bdaf-e57218d685c0" + "ff9a3c5d-a916-442f-8aba-4bc9f5599aba" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T122600Z:6f22e84c-bbae-4ca2-bdaf-e57218d685c0" + "WESTUS2:20221017T185459Z:ff9a3c5d-a916-442f-8aba-4bc9f5599aba" + ], + "Date": [ + "Mon, 17 Oct 2022 18:54:59 GMT" ], "Content-Length": [ - "766" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -729,46 +729,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo11803\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo11803.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo13589\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13589.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODk/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9aab1e34-a87a-4223-beff-2192af158f8a" + "02b44e85-9ac1-4b19-bcb2-d2f21ee45490" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:26:31 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "63f8ac73-25bf-45d8-8713-1b029e31459f" + "f2f64096-223a-48f6-8e18-5dbd145a83dc" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -776,17 +770,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11846" + "11989" ], "x-ms-correlation-request-id": [ - "2425fd2b-0d17-4703-8504-9f095c8302d0" + "4a25ad89-5800-4d86-ae3c-4a44c091c3dd" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T122631Z:2425fd2b-0d17-4703-8504-9f095c8302d0" + "WESTUS2:20221017T185530Z:4a25ad89-5800-4d86-ae3c-4a44c091c3dd" + ], + "Date": [ + "Mon, 17 Oct 2022 18:55:29 GMT" ], "Content-Length": [ - "766" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -795,46 +795,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo11803\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo11803.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo13589\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13589.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODk/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c4eebf6d-a29b-4bdf-af57-a279a45a7a52" + "f3bceed0-745d-4d67-8282-d6406c039f04" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:27:01 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "e095b03b-5760-444a-8b66-69cc2ca6c2e8" + "d92a0e92-2b75-4cc0-ad50-c7453b384121" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -842,17 +836,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11844" + "11987" ], "x-ms-correlation-request-id": [ - "c8eaeb3a-c72a-42c9-88e5-3bd7a6cb92a0" + "7930acee-76ec-4365-a490-27f79aaa4876" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T122701Z:c8eaeb3a-c72a-42c9-88e5-3bd7a6cb92a0" + "WESTUS2:20221017T185600Z:7930acee-76ec-4365-a490-27f79aaa4876" + ], + "Date": [ + "Mon, 17 Oct 2022 18:55:59 GMT" ], "Content-Length": [ - "766" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -861,46 +861,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo11803\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo11803.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo13589\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13589.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODk/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17fcbf59-7868-4a18-8dbd-890e922e63dd" + "163ff226-ec07-446a-956f-d71e46e9b76e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:27:31 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "d0e2e743-04db-4eb9-ba69-f4900569c716" + "b45c6f88-cf26-4143-a359-ad2c98891b02" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -908,17 +902,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11842" + "11985" ], "x-ms-correlation-request-id": [ - "996be71a-7862-4905-a6b3-80bac2a7bacb" + "70e85f3f-67d5-4591-98c6-f32417646b73" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T122732Z:996be71a-7862-4905-a6b3-80bac2a7bacb" + "WESTUS2:20221017T185630Z:70e85f3f-67d5-4591-98c6-f32417646b73" + ], + "Date": [ + "Mon, 17 Oct 2022 18:56:29 GMT" ], "Content-Length": [ - "766" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -927,46 +927,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo11803\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo11803.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo13589\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13589.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODk/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94beddb9-106c-47f3-82cc-4bd7f309e936" + "f5e12ee9-7a08-41f9-a191-b1b4b79f4ab0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:28:13 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "c1629445-fbe1-4b94-b0ab-68c290e7d5d4" + "68d6d7df-e8b4-4c1b-9601-415b1f911cdb" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -974,17 +968,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11840" + "11983" ], "x-ms-correlation-request-id": [ - "8715b487-7b38-4f01-b696-5f1ab1c2c706" + "f613817f-ecd2-49ae-b129-bd2b68d928e6" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T122813Z:8715b487-7b38-4f01-b696-5f1ab1c2c706" + "WESTUS2:20221017T185701Z:f613817f-ecd2-49ae-b129-bd2b68d928e6" + ], + "Date": [ + "Mon, 17 Oct 2022 18:57:01 GMT" ], "Content-Length": [ - "766" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -993,46 +993,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo11803\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo11803.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo13589\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13589.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODk/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f0dd51ab-0b70-479e-9891-6f6234aa182c" + "a1a7e7f7-b199-4edc-b1b9-1afcb0ce348e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:28:44 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "97b59131-591f-48ad-b594-38699a73729a" + "45d475de-dc62-46e5-8a08-6d7193c1f96b" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1040,17 +1034,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11838" + "11981" ], "x-ms-correlation-request-id": [ - "34168872-faba-473b-bed8-c2053bf35828" + "43f29f53-fd41-4f2c-a414-016f5577cb41" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T122844Z:34168872-faba-473b-bed8-c2053bf35828" + "WESTUS2:20221017T185731Z:43f29f53-fd41-4f2c-a414-016f5577cb41" + ], + "Date": [ + "Mon, 17 Oct 2022 18:57:31 GMT" ], "Content-Length": [ - "766" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1059,46 +1059,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo11803\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo11803.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo13589\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13589.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODk/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b0822c9a-ce68-4232-88c3-0ea23f8ff4a3" + "ff112b27-0b69-4a5b-8913-090ba5c546d5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:29:15 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "a74bc8a7-5622-4ef9-bd41-16891ca5d7ce" + "868cfaf3-052e-4bc8-8805-26bf2f72b499" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1107,16 +1101,22 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11836" + "11979" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "95fad4dc-0322-4c1c-a88e-35002a683167" + "ba39319f-702a-4db9-ab6d-60861b84ae99" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T122915Z:95fad4dc-0322-4c1c-a88e-35002a683167" + "WESTUS2:20221017T185801Z:ba39319f-702a-4db9-ab6d-60861b84ae99" + ], + "Date": [ + "Mon, 17 Oct 2022 18:58:01 GMT" ], "Content-Length": [ - "766" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1125,46 +1125,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo11803\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo11803.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo13589\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13589.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODk/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a3b2b4b-a18e-403e-a0c7-2dbd17fccd59" + "50f13f68-93a3-4579-b331-138dad7c6159" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:29:45 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "6a22e42a-034e-48bd-925a-b6f1861ea136" + "f13daea5-9526-40e9-9e34-1383c4ed6330" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1172,17 +1166,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11834" + "11977" ], "x-ms-correlation-request-id": [ - "ec75cc51-64d9-4281-a83f-899b0953a6bf" + "61f694f2-69dd-47cc-9ce5-2b67d2cc12ba" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T122946Z:ec75cc51-64d9-4281-a83f-899b0953a6bf" + "WESTUS2:20221017T185832Z:61f694f2-69dd-47cc-9ce5-2b67d2cc12ba" + ], + "Date": [ + "Mon, 17 Oct 2022 18:58:31 GMT" ], "Content-Length": [ - "766" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1191,46 +1191,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo11803\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo11803.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo13589\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13589.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODk/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "70f418ba-1bb9-4353-a0fc-cf29b4ccd31a" + "f222c071-0d79-4329-bbcf-c6708b9f09f8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:30:16 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "9bf6b6ca-216c-4800-b030-e0ac8bc43ef6" + "52d919bd-51ee-4768-9a2b-3e47c4b5a9e4" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1238,17 +1232,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11861" + "11975" ], "x-ms-correlation-request-id": [ - "70b7d7eb-f4f7-4c70-8202-5d2607ef3673" + "d723e4cc-8469-4930-b7da-5d0a97e1e30d" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T123017Z:70b7d7eb-f4f7-4c70-8202-5d2607ef3673" + "WESTUS2:20221017T185902Z:d723e4cc-8469-4930-b7da-5d0a97e1e30d" + ], + "Date": [ + "Mon, 17 Oct 2022 18:59:01 GMT" ], "Content-Length": [ - "766" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1257,46 +1257,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo11803\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo11803.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo13589\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13589.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODk/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d1d2212-7814-4489-a5f8-81dfe4a53c73" + "5cf990d5-8583-460e-9218-73fd40555e4a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:30:47 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "4df3ce81-cede-4de5-99ed-eec7a586508b" + "f996d2ff-57c5-4c2a-a20d-b967c30c5a84" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1304,17 +1298,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11859" + "11973" ], "x-ms-correlation-request-id": [ - "6089d543-49c5-4d52-8da7-853300768766" + "a899fe9c-9f56-4213-b0a6-0ee183af04f9" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T123048Z:6089d543-49c5-4d52-8da7-853300768766" + "WESTUS2:20221017T185932Z:a899fe9c-9f56-4213-b0a6-0ee183af04f9" + ], + "Date": [ + "Mon, 17 Oct 2022 18:59:32 GMT" ], "Content-Length": [ - "766" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1323,46 +1323,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo11803\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo11803.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo13589\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13589.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODk/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "15cb6b9a-b39c-48de-a509-11c36c755351" + "a55ef9e4-a5d0-4c55-b0eb-6d9e52bb675b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:31:18 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "2964a648-3d9a-4003-b862-e2aadef3ffd8" + "6a613181-6f76-46bb-a68a-730e2a9cae6f" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1370,17 +1364,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11857" + "11971" ], "x-ms-correlation-request-id": [ - "6ec029cf-e0c7-4afe-ae89-6f52d6c4216b" + "30434d1a-10f2-4c52-a747-11cc8bc84487" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T123119Z:6ec029cf-e0c7-4afe-ae89-6f52d6c4216b" + "WESTUS2:20221017T190003Z:30434d1a-10f2-4c52-a747-11cc8bc84487" + ], + "Date": [ + "Mon, 17 Oct 2022 19:00:02 GMT" ], "Content-Length": [ - "766" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1389,46 +1389,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo11803\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo11803.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo13589\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13589.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODk/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58ab177e-c3d7-4662-b56e-c86ea412744a" + "aeefd50a-dcd3-4ff2-8301-f63b9fb7d5c2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:31:53 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "75f356e0-375d-4f28-b4eb-b183f470e0b1" + "21331151-9308-45b9-9b7a-5a72d077d403" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1436,17 +1430,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11855" + "11969" ], "x-ms-correlation-request-id": [ - "0a989cd0-063a-4ba5-8b44-5677295dfe1a" + "ee6c5866-2c04-45ee-9657-c06b86896da2" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T123154Z:0a989cd0-063a-4ba5-8b44-5677295dfe1a" + "WESTUS2:20221017T190033Z:ee6c5866-2c04-45ee-9657-c06b86896da2" + ], + "Date": [ + "Mon, 17 Oct 2022 19:00:32 GMT" ], "Content-Length": [ - "766" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1455,46 +1455,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo11803\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo11803.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo13589\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13589.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODk/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "92e40044-0849-4812-a427-872803b9e347" + "e100fe15-ce8e-4cf2-af5d-748f32592bb9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:33:07 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "27b0b709-d8b7-4601-b7e8-31838e326291" + "984d8e16-7616-4527-af28-d8cf9b6631f9" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1502,17 +1496,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11853" + "11967" ], "x-ms-correlation-request-id": [ - "228624f1-108b-4e11-ab9f-c85c0f1b41e6" + "77e46362-e68d-48be-b1a5-33173565a2e3" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T123308Z:228624f1-108b-4e11-ab9f-c85c0f1b41e6" + "WESTUS2:20221017T190103Z:77e46362-e68d-48be-b1a5-33173565a2e3" + ], + "Date": [ + "Mon, 17 Oct 2022 19:01:03 GMT" ], "Content-Length": [ - "766" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1521,46 +1521,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo11803\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo11803.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo13589\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13589.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODk/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5cf326e6-db73-4411-a58e-e1753eef3fe1" + "cba8a14d-5745-4935-9dc7-d33065a0d911" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:33:40 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "6892c55b-0027-4ddb-8dab-0e17e24ecaad" + "59cad08b-2f5c-4eb9-bee5-874ae9e4308b" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1568,17 +1562,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11851" + "11965" ], "x-ms-correlation-request-id": [ - "4123e3ad-62a9-47eb-bff8-a556c3dc22ff" + "ec3c77ff-59b5-4e96-bad7-30dd97779a23" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T123340Z:4123e3ad-62a9-47eb-bff8-a556c3dc22ff" + "WESTUS2:20221017T190134Z:ec3c77ff-59b5-4e96-bad7-30dd97779a23" + ], + "Date": [ + "Mon, 17 Oct 2022 19:01:33 GMT" ], "Content-Length": [ - "766" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1587,46 +1587,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo11803\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo11803.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo13589\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13589.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODk/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8304036e-bde3-4ee5-9fa7-1a52fbb71438" + "56812328-75ff-437a-bc5d-ba1e4d92ebcc" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:34:11 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "861fce80-0b9a-4153-b24d-3800bb00e204" + "c3805d7f-eaa8-49fe-a14c-c732f1f043e5" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1634,17 +1628,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11849" + "11963" ], "x-ms-correlation-request-id": [ - "a5210c58-e900-43c6-8402-926a0cf55c64" + "60a5b585-8a30-45a7-b0bd-34981ce596a4" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T123411Z:a5210c58-e900-43c6-8402-926a0cf55c64" + "WESTUS2:20221017T190204Z:60a5b585-8a30-45a7-b0bd-34981ce596a4" + ], + "Date": [ + "Mon, 17 Oct 2022 19:02:04 GMT" ], "Content-Length": [ - "764" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1653,46 +1653,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo11803\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo11803.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo13589\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13589.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODk/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58f342e6-37df-41dd-8312-1077eedecc7b" + "48268474-8456-4918-912e-5b22218c908b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:34:42 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "4da36268-7a49-43fe-80db-78e3f6aee365" + "2ae183fb-079b-4b09-a1fd-fb3c88fc36d4" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1700,17 +1694,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11847" + "11961" ], "x-ms-correlation-request-id": [ - "79a02f0a-9bfa-45db-ab43-c5be7ed206f5" + "9c34c25e-5eed-455e-8052-5018842a6502" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T123442Z:79a02f0a-9bfa-45db-ab43-c5be7ed206f5" + "WESTUS2:20221017T190235Z:9c34c25e-5eed-455e-8052-5018842a6502" + ], + "Date": [ + "Mon, 17 Oct 2022 19:02:34 GMT" ], "Content-Length": [ - "764" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1719,46 +1719,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo11803\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo11803.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo13589\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13589.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODk/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25af4236-670a-4dba-9cd1-06da00e1d031" + "cdb93608-29e1-4ec3-9bae-eb77b9e48434" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:35:13 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "e9e03deb-6761-41da-b7b8-535019b537b7" + "d8cbe8e5-e477-4988-9285-322758973a2a" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1766,17 +1760,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11875" + "11959" ], "x-ms-correlation-request-id": [ - "4c898bb3-0da4-4fbd-bb03-a0a82fffbb78" + "0352d96b-80bc-40b2-8a08-586989b67f54" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T123514Z:4c898bb3-0da4-4fbd-bb03-a0a82fffbb78" + "WESTUS2:20221017T190305Z:0352d96b-80bc-40b2-8a08-586989b67f54" + ], + "Date": [ + "Mon, 17 Oct 2022 19:03:04 GMT" ], "Content-Length": [ - "765" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1785,46 +1785,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo11803\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo11803.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo13589\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13589.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODk/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a5c50ce4-4f93-41f6-84d7-2b97d1ce9ef5" + "c2847ea4-57e4-460b-ad22-d7d3b0b08b58" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:35:56 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "96f9dfe1-0648-4148-a4f2-139e96305cee" + "fea723ad-c755-4473-8e1e-6dec5092455e" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1832,17 +1826,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11873" + "11957" ], "x-ms-correlation-request-id": [ - "cfe45be3-1f6e-40d6-81a5-7ae9bd6b51f1" + "a3b4ca9b-ea15-4371-a571-b5ba7f3e3df6" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T123556Z:cfe45be3-1f6e-40d6-81a5-7ae9bd6b51f1" + "WESTUS2:20221017T190336Z:a3b4ca9b-ea15-4371-a571-b5ba7f3e3df6" + ], + "Date": [ + "Mon, 17 Oct 2022 19:03:35 GMT" ], "Content-Length": [ - "765" + "761" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1851,46 +1851,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo11803\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo11803.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo13589\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13589.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjYxOTQ/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODk/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1ce22461-082c-4d48-ae40-31da12ce920a" + "b0ac70d9-2e23-44cf-83f7-2cbb405c08f6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:23:57 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "8d52877c-8a10-472a-93ad-35a9a521842c" + "cbd2f5e7-e64c-4aad-85cd-13b5d20f06c7" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1899,16 +1893,22 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11838" + "11955" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "cbd1439c-5b6e-4c8d-b9df-b5050976a45b" + "6ff75017-b298-4323-9bf4-297bd7453b77" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T122358Z:cbd1439c-5b6e-4c8d-b9df-b5050976a45b" + "WESTUS2:20221017T190406Z:6ff75017-b298-4323-9bf4-297bd7453b77" + ], + "Date": [ + "Mon, 17 Oct 2022 19:04:06 GMT" ], "Content-Length": [ - "766" + "762" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1917,46 +1917,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo26194.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo13589\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13589.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjYxOTQ/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODk/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21029a96-9d1b-4fc1-b028-1eb75604c54b" + "6c4758db-191b-4db0-b88b-6f7ff3d57cfd" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:24:28 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "f63e8778-17e0-4e9d-8216-c12843248a52" + "87701a3e-6904-4e6f-bb19-862b478708e6" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1964,17 +1958,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11836" + "11953" ], "x-ms-correlation-request-id": [ - "039af518-9f17-476b-9d8a-e4ebce733a7f" + "fd69ebf5-d788-4b09-ab43-3c20e6a556a4" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T122428Z:039af518-9f17-476b-9d8a-e4ebce733a7f" + "WESTUS2:20221017T190437Z:fd69ebf5-d788-4b09-ab43-3c20e6a556a4" + ], + "Date": [ + "Mon, 17 Oct 2022 19:04:37 GMT" ], "Content-Length": [ - "766" + "762" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1983,46 +1983,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo26194.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo13589\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13589.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjYxOTQ/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODk/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d16d4ea9-621f-411f-b65c-120943766e91" + "c0a1815d-132e-4c0b-afd7-483ced7ace20" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:24:59 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "1db76339-986c-451c-8246-1ec3721ff901" + "d523b568-189c-4d29-b767-87b2bbc4cabe" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2030,17 +2024,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11834" + "11951" ], "x-ms-correlation-request-id": [ - "5936257e-2533-4dd9-a0d1-35a90eaa14cb" + "89772180-1f08-405d-8a45-eb7708ef31a5" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T122459Z:5936257e-2533-4dd9-a0d1-35a90eaa14cb" + "WESTUS2:20221017T190507Z:89772180-1f08-405d-8a45-eb7708ef31a5" + ], + "Date": [ + "Mon, 17 Oct 2022 19:05:07 GMT" ], "Content-Length": [ - "766" + "762" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2049,46 +2049,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo26194.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo13589\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13589.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjYxOTQ/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODk/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7fc1b1c-5260-4eda-88fb-9645cb4781de" + "b1f25be3-c5ac-44c9-9aff-0fd39bb77bdc" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:25:30 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "3844a0fc-8489-4ef7-ac63-11c5076d279d" + "3360030a-bfbb-47fd-8455-81a75456f4b0" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2096,17 +2090,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11849" + "11949" ], "x-ms-correlation-request-id": [ - "9985350c-dc24-40dd-ae8f-2250f0b668f2" + "c155a165-0e10-4d1d-804f-ea01dcd13862" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T122530Z:9985350c-dc24-40dd-ae8f-2250f0b668f2" + "WESTUS2:20221017T190538Z:c155a165-0e10-4d1d-804f-ea01dcd13862" + ], + "Date": [ + "Mon, 17 Oct 2022 19:05:37 GMT" ], "Content-Length": [ - "766" + "762" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2115,46 +2115,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo26194.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo13589\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13589.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjYxOTQ/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODk/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb52f151-f4a9-40bb-b85d-dd81a7e704f9" + "aebe56a6-b4d3-4d32-8de2-309d0baa4e05" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:26:00 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "4df76c03-26a4-420d-8ed6-13928744ca61" + "47f4c5b8-c063-4401-82c4-9b2ab88cdc73" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2162,17 +2156,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11847" + "11947" ], "x-ms-correlation-request-id": [ - "25b99ca2-d103-4298-92e2-288003055436" + "6ec76af0-c561-45a2-9815-b8886c51b102" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T122600Z:25b99ca2-d103-4298-92e2-288003055436" + "WESTUS2:20221017T190608Z:6ec76af0-c561-45a2-9815-b8886c51b102" + ], + "Date": [ + "Mon, 17 Oct 2022 19:06:08 GMT" ], "Content-Length": [ - "766" + "762" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2181,46 +2181,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo26194.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo13589\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13589.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjYxOTQ/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODk/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "018e351d-f766-4119-a600-4dae8647e9cb" + "11179d4d-83f5-4dcb-9011-fe9f3daf6533" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:26:31 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "ce1ea5d9-b45b-4adf-aeda-0b10d4711d05" + "ef76ecea-2a58-4144-907e-397684674e50" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2228,17 +2222,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11845" + "11945" ], "x-ms-correlation-request-id": [ - "b17e7b17-b797-4db9-a6b4-b4827343e66e" + "76f271cd-f727-4a6c-80e3-3e5271799133" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T122631Z:b17e7b17-b797-4db9-a6b4-b4827343e66e" + "WESTUS2:20221017T190639Z:76f271cd-f727-4a6c-80e3-3e5271799133" + ], + "Date": [ + "Mon, 17 Oct 2022 19:06:38 GMT" ], "Content-Length": [ - "766" + "762" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2247,46 +2247,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo26194.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo13589\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13589.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjYxOTQ/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODk/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2347c0ca-81e5-4daa-8cfc-00a9e37f3b48" + "0e6a15ed-c003-45ce-becf-22b143495a8a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:27:01 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "7c82a1e1-b807-4f30-ad17-165758b8522d" + "9058d6f7-ba58-434c-8b3d-c7436bf859bb" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2294,17 +2288,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11843" + "11943" ], "x-ms-correlation-request-id": [ - "e9de8e44-be00-4d8e-84e9-30e12736c48c" + "977919ce-85f9-4a0f-8e9d-a5677659bf46" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T122702Z:e9de8e44-be00-4d8e-84e9-30e12736c48c" + "WESTUS2:20221017T190709Z:977919ce-85f9-4a0f-8e9d-a5677659bf46" + ], + "Date": [ + "Mon, 17 Oct 2022 19:07:09 GMT" ], "Content-Length": [ - "766" + "762" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2313,46 +2313,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo26194.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo13589\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13589.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjYxOTQ/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjQ0MDA/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be369f11-6efb-4087-be49-343c4c35b40a" + "b7c61ece-73e2-4193-a93e-67dd4bb83806" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:27:43 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "410be897-01d2-4156-b994-30aa71c7453f" + "a03f0a61-6d5d-43a8-ad3c-2a8cf00b3482" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2360,17 +2354,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11841" + "11998" ], "x-ms-correlation-request-id": [ - "a82f2f1b-70fc-48b6-a59c-4c69b29f116f" + "922626f1-805c-40d0-a68d-e453e2b2fbb5" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T122743Z:a82f2f1b-70fc-48b6-a59c-4c69b29f116f" + "WESTUS2:20221017T185259Z:922626f1-805c-40d0-a68d-e453e2b2fbb5" + ], + "Date": [ + "Mon, 17 Oct 2022 18:52:58 GMT" ], "Content-Length": [ - "766" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2379,46 +2379,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo26194.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo24400.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjYxOTQ/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjQ0MDA/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0654e5c2-4f38-4172-ae85-4afe1f1f3d28" + "9d6f39d0-3caa-46ed-8f8f-7318288b62de" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:28:13 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "00d1ffb4-d983-4f9e-af17-f5539f797d3c" + "c7ea35ea-df84-4381-8c4c-276b2f5a4dae" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2426,17 +2420,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11839" + "11996" ], "x-ms-correlation-request-id": [ - "230d5c5c-67de-43af-8fb7-230a5986908a" + "75c09dd4-aa8e-4aea-8822-f51ce2b0f60b" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T122814Z:230d5c5c-67de-43af-8fb7-230a5986908a" + "WESTUS2:20221017T185329Z:75c09dd4-aa8e-4aea-8822-f51ce2b0f60b" + ], + "Date": [ + "Mon, 17 Oct 2022 18:53:29 GMT" ], "Content-Length": [ - "766" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2445,46 +2445,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo26194.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo24400.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjYxOTQ/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjQ0MDA/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1dc16c55-d55d-41a0-9f16-5dc05455543a" + "4676104b-f872-4690-afb0-57df609a9218" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:28:44 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "2d88a2e3-34be-4617-8fe0-50a2bb37250b" + "7d366148-516f-4ea8-a2ba-fdbfec3124f1" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2492,17 +2486,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11837" + "11994" ], "x-ms-correlation-request-id": [ - "ffcf4049-674e-4c84-8966-604c776932fd" + "57a694cd-939c-4241-8859-6ce3f1d179cf" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T122845Z:ffcf4049-674e-4c84-8966-604c776932fd" + "WESTUS2:20221017T185359Z:57a694cd-939c-4241-8859-6ce3f1d179cf" + ], + "Date": [ + "Mon, 17 Oct 2022 18:53:59 GMT" ], "Content-Length": [ - "766" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2511,46 +2511,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo26194.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo24400.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjYxOTQ/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjQ0MDA/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6ead03a-506a-49dc-a23f-30e74fb59507" + "a3bda1d0-8bc0-4b8b-8cbe-4ea7d2d9c696" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:29:15 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "89b5b97e-1e88-4bfd-9247-385c74330426" + "019f751c-4031-4edc-91a1-8708d88fc674" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2558,17 +2552,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11835" + "11992" ], "x-ms-correlation-request-id": [ - "3590dacc-b338-4832-990e-4b5d3f7c13df" + "9d17f859-1433-456a-bd24-3232f94d4977" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T122915Z:3590dacc-b338-4832-990e-4b5d3f7c13df" + "WESTUS2:20221017T185429Z:9d17f859-1433-456a-bd24-3232f94d4977" + ], + "Date": [ + "Mon, 17 Oct 2022 18:54:29 GMT" ], "Content-Length": [ - "766" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2577,46 +2577,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo26194.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo24400.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjYxOTQ/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjQ0MDA/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25031aaf-cece-41f2-b27b-eb96e4f69a9e" + "4da96a65-333b-48ff-96b6-44b25b3193ec" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:29:46 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "13e7e543-e4cf-4f3d-8cbc-792d3090e80a" + "bee8bc02-4f65-4d37-b9ba-e3a5062adaec" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2624,17 +2618,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11833" + "11990" ], "x-ms-correlation-request-id": [ - "ab7f1594-9cec-4979-885a-52136f70d325" + "08840393-1265-4b2d-a07d-8ae31d4af3ad" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T122946Z:ab7f1594-9cec-4979-885a-52136f70d325" + "WESTUS2:20221017T185500Z:08840393-1265-4b2d-a07d-8ae31d4af3ad" + ], + "Date": [ + "Mon, 17 Oct 2022 18:55:00 GMT" ], "Content-Length": [ - "766" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2643,46 +2643,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo26194.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo24400.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjYxOTQ/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjQ0MDA/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2761b181-bb71-4d50-a520-5f3071fdc471" + "e20e0a15-68d8-4b6f-9fb9-4922608c70ad" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:30:18 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "dae87be8-7e07-4c79-90aa-f9b45d98e077" + "788d9e0a-b16c-47f9-aa84-df636d59efa5" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2690,17 +2684,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11860" + "11988" ], "x-ms-correlation-request-id": [ - "eae827f9-3fea-4fe9-9147-b059f9486593" + "49cd754a-66e0-45c0-b973-01a832be94e8" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T123018Z:eae827f9-3fea-4fe9-9147-b059f9486593" + "WESTUS2:20221017T185530Z:49cd754a-66e0-45c0-b973-01a832be94e8" + ], + "Date": [ + "Mon, 17 Oct 2022 18:55:29 GMT" ], "Content-Length": [ - "766" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2709,46 +2709,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo26194.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo24400.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjYxOTQ/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjQ0MDA/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8b029031-97c8-4626-8dea-f439de9cddbc" + "a24a8455-da2f-4153-bb9e-360e818dedeb" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:30:48 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "9e50f266-7dab-4107-8e88-56c84c0ba2f3" + "06107dc5-c087-49c4-9411-0ed88080ce2d" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2756,17 +2750,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11858" + "11986" ], "x-ms-correlation-request-id": [ - "2891296b-7164-4cfd-b5ab-6f120b2c9bee" + "215ccf4b-da9a-457f-8115-8eb26dcfd074" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T123049Z:2891296b-7164-4cfd-b5ab-6f120b2c9bee" + "WESTUS2:20221017T185600Z:215ccf4b-da9a-457f-8115-8eb26dcfd074" + ], + "Date": [ + "Mon, 17 Oct 2022 18:56:00 GMT" ], "Content-Length": [ - "766" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2775,46 +2775,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo26194.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo24400.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjYxOTQ/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjQ0MDA/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e981b73-e778-4bc1-9d12-3deec1a3745a" + "3e5fa1e3-d890-45c0-88ae-858a574ff41e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:31:23 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "adb29587-b27a-49a1-8d33-1eec4fa34292" + "bc8c2aee-8d90-4dae-814f-ea37c22a7a74" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2822,17 +2816,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11856" + "11984" ], "x-ms-correlation-request-id": [ - "27e392ef-fa06-41ba-b8d9-7bfb81bddc92" + "d7ff54ed-029e-4c83-8fc2-cf4d06640ebd" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T123123Z:27e392ef-fa06-41ba-b8d9-7bfb81bddc92" + "WESTUS2:20221017T185631Z:d7ff54ed-029e-4c83-8fc2-cf4d06640ebd" + ], + "Date": [ + "Mon, 17 Oct 2022 18:56:30 GMT" ], "Content-Length": [ - "766" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2841,46 +2841,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo26194.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo24400.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjYxOTQ/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjQ0MDA/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "16e0dd84-75e7-4db2-b525-11544cffc314" + "ce32cd63-2d61-4810-bb24-0dc99307cbcc" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:32:37 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "2773fdfc-687e-41ad-a5bd-f31583c397ef" + "ffb11dcc-3e47-45da-8225-63c49190a03c" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2888,17 +2882,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11854" + "11982" ], "x-ms-correlation-request-id": [ - "1f96d147-301e-41ef-8b9c-9b041deb8ca0" + "500984b2-699f-4023-85b9-aa13b6f7c990" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T123237Z:1f96d147-301e-41ef-8b9c-9b041deb8ca0" + "WESTUS2:20221017T185701Z:500984b2-699f-4023-85b9-aa13b6f7c990" + ], + "Date": [ + "Mon, 17 Oct 2022 18:57:01 GMT" ], "Content-Length": [ - "766" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2907,46 +2907,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo26194.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo24400.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjYxOTQ/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjQ0MDA/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "883677ee-3dd7-4c5f-9435-ade35b214212" + "73bbc8ed-b0cc-419f-b12c-33db95bd09cc" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:33:07 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "87166ed0-b166-4b6d-8087-ca5d1e3b1da7" + "5188c29e-0386-4953-9ec8-a630a62aa77f" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2955,16 +2949,22 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11852" + "11980" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "adbcde5d-d7df-407c-95c9-a0a34a7530e9" + "025ed6eb-90c6-4937-94ce-e152da5f4fac" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T123308Z:adbcde5d-d7df-407c-95c9-a0a34a7530e9" + "WESTUS2:20221017T185731Z:025ed6eb-90c6-4937-94ce-e152da5f4fac" + ], + "Date": [ + "Mon, 17 Oct 2022 18:57:31 GMT" ], "Content-Length": [ - "766" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2973,46 +2973,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo26194.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo24400.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjYxOTQ/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjQ0MDA/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c006788-3289-4282-a775-ac69c4e8970f" + "97a72c5d-9302-4cdb-afde-f14378aad270" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:33:41 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "36149a7a-d0e6-4be4-8bda-ca8ea8420787" + "bd007a13-3343-445b-91d6-442a4c264b09" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3020,17 +3014,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11850" + "11978" ], "x-ms-correlation-request-id": [ - "c1060d92-f113-4cdc-aa12-8e01a88d4b7f" + "c3b48855-f557-4c98-9bbf-79d7398c3034" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T123341Z:c1060d92-f113-4cdc-aa12-8e01a88d4b7f" + "WESTUS2:20221017T185801Z:c3b48855-f557-4c98-9bbf-79d7398c3034" + ], + "Date": [ + "Mon, 17 Oct 2022 18:58:01 GMT" ], "Content-Length": [ - "766" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3039,46 +3039,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo26194.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo24400.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjYxOTQ/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjQ0MDA/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5ab38308-a876-49e6-9c1d-46e733f36cb2" + "ed909be3-00af-4b0f-ac5c-b74434b757dc" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:34:11 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "5bcdfe1e-9da6-4a5e-a472-8a49f0528586" + "d59c52f0-98ca-4682-b395-834d0da36b9f" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3086,17 +3080,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11848" + "11976" ], "x-ms-correlation-request-id": [ - "6edeacdf-aaa9-46d4-810a-08b44602a435" + "5e265cbc-4b97-471b-be42-86a30d2694ba" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T123412Z:6edeacdf-aaa9-46d4-810a-08b44602a435" + "WESTUS2:20221017T185832Z:5e265cbc-4b97-471b-be42-86a30d2694ba" + ], + "Date": [ + "Mon, 17 Oct 2022 18:58:31 GMT" ], "Content-Length": [ - "766" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3105,46 +3105,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo26194.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo24400.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjYxOTQ/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjQ0MDA/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f45e523c-d0a7-429a-8bb3-ae089400b510" + "c6580147-0986-42ab-bbc9-a43a7ef1625f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:34:42 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "526126e5-fb8d-4e2c-a72c-792c60bf21d6" + "46580436-e6b2-4686-94de-5fc7ad3cc989" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3152,17 +3146,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11846" + "11974" ], "x-ms-correlation-request-id": [ - "781498d5-72db-4779-839e-ad20620e398c" + "97a4cf71-5406-4e00-899e-48ef2e963f53" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T123443Z:781498d5-72db-4779-839e-ad20620e398c" + "WESTUS2:20221017T185902Z:97a4cf71-5406-4e00-899e-48ef2e963f53" + ], + "Date": [ + "Mon, 17 Oct 2022 18:59:01 GMT" ], "Content-Length": [ - "766" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3171,46 +3171,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo26194.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo24400.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjYxOTQ/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjQ0MDA/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d7de400b-1b53-42ba-bc46-2500906f6677" + "a5cbefce-336d-45f7-8d81-569d0b1775e7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:35:24 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "9d8aa38c-05a8-4a34-b2a1-ae6639bdd812" + "1df8139d-a19e-46b4-addc-cf4af6f2a63c" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3218,17 +3212,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11874" + "11972" ], "x-ms-correlation-request-id": [ - "7ab845b0-09df-4b99-a9cb-e481dc6b185e" + "a41b1110-db8f-422d-bb7b-fa4fab465c19" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T123525Z:7ab845b0-09df-4b99-a9cb-e481dc6b185e" + "WESTUS2:20221017T185932Z:a41b1110-db8f-422d-bb7b-fa4fab465c19" + ], + "Date": [ + "Mon, 17 Oct 2022 18:59:32 GMT" ], "Content-Length": [ - "764" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3237,46 +3237,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo26194.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo24400.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjYxOTQ/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjQ0MDA/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1eed8b63-c6f2-4720-b2a7-90cbca712cba" + "9a1ffc29-f7d0-4f18-9170-766ec8aaf423" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:35:56 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "10973877-690e-4298-bf90-85a2fead3c78" + "bb4882c9-48d0-49b5-891a-9a645e230aad" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3284,17 +3278,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11872" + "11970" ], "x-ms-correlation-request-id": [ - "198462fd-30d4-4a80-a23a-80d29f16e766" + "91f5e489-87a2-4c8a-a8ca-9a64ca57801d" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T123556Z:198462fd-30d4-4a80-a23a-80d29f16e766" + "WESTUS2:20221017T190003Z:91f5e489-87a2-4c8a-a8ca-9a64ca57801d" + ], + "Date": [ + "Mon, 17 Oct 2022 19:00:02 GMT" ], "Content-Length": [ - "765" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3303,52 +3303,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo26194.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo24400.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803/linkedServers/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDMvbGlua2VkU2VydmVycy9SZWRpc0dlbzI2MTk0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n}", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjQ0MDA/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b738656a-6a4c-4adc-baf3-1fd3e894b933" + "3fa43597-e11e-4f6e-bf69-a6ff800c7bae" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "259" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:35:57 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "4c6cce28-be29-4295-bc95-cc968d06b68d" + "16cd9f6e-704a-4d46-b09c-d6ebb82ce40c" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3356,17 +3344,23 @@ "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" ], "x-ms-correlation-request-id": [ - "cde4412a-bdae-49b1-837f-5d5c875d355b" + "eb5fd02f-4a23-415e-bcef-db36bb2f834f" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T123557Z:cde4412a-bdae-49b1-837f-5d5c875d355b" + "WESTUS2:20221017T190033Z:eb5fd02f-4a23-415e-bcef-db36bb2f834f" + ], + "Date": [ + "Mon, 17 Oct 2022 19:00:32 GMT" ], "Content-Length": [ - "541" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3375,40 +3369,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803/linkedServers/RedisGeo26194\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "StatusCode": 201 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo24400.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803/linkedServers/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDMvbGlua2VkU2VydmVycy9SZWRpc0dlbzI2MTk0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjQ0MDA/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e568d568-46f2-4e76-8221-9707cfdfce8b" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:36:28 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "c8361dc6-e598-4ef2-bc12-68dd444e589e" + "53023338-69bb-4164-bbb3-4d6fb0ae4efa" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3416,17 +3410,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11871" + "11966" ], "x-ms-correlation-request-id": [ - "34121bbb-7754-42c7-b1cb-49b9290be40e" + "d6c5d4c0-d9b5-421b-b8bf-cfe5c745b23f" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T123628Z:34121bbb-7754-42c7-b1cb-49b9290be40e" + "WESTUS2:20221017T190103Z:d6c5d4c0-d9b5-421b-b8bf-cfe5c745b23f" + ], + "Date": [ + "Mon, 17 Oct 2022 19:01:03 GMT" ], "Content-Length": [ - "487" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3435,40 +3435,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803/linkedServers/RedisGeo26194\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo24400.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803/linkedServers/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDMvbGlua2VkU2VydmVycy9SZWRpc0dlbzI2MTk0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjQ0MDA/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7faacb95-9f2b-47de-bde6-ab8277143276" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:36:58 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "7fc8b32b-de7b-4bf8-8981-ae326dd74020" + "9288d4ce-86d0-4cf8-8142-3fdac9d796e5" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3476,17 +3476,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11870" + "11964" ], "x-ms-correlation-request-id": [ - "c71790e3-a858-4242-80d1-c9fd96f92f62" + "42ad19f3-9fed-4f1d-97de-35d8cefe1f9b" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T123659Z:c71790e3-a858-4242-80d1-c9fd96f92f62" + "WESTUS2:20221017T190134Z:42ad19f3-9fed-4f1d-97de-35d8cefe1f9b" + ], + "Date": [ + "Mon, 17 Oct 2022 19:01:34 GMT" ], "Content-Length": [ - "487" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3495,40 +3501,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803/linkedServers/RedisGeo26194\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo24400.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803/linkedServers/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDMvbGlua2VkU2VydmVycy9SZWRpc0dlbzI2MTk0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjQ0MDA/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ff29fca8-b415-46d6-961d-b6bff7228d71" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:37:28 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "f6971a4f-e447-4de3-9691-4916b6ff64a0" + "19bb4cf1-6a0e-4241-822a-a86933590de8" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3536,17 +3542,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11869" + "11962" ], "x-ms-correlation-request-id": [ - "50fe1500-2020-4c1d-bd76-1434d1597270" + "c4264f4d-d1cf-4f3b-99cd-729f46034ef8" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T123729Z:50fe1500-2020-4c1d-bd76-1434d1597270" + "WESTUS2:20221017T190204Z:c4264f4d-d1cf-4f3b-99cd-729f46034ef8" + ], + "Date": [ + "Mon, 17 Oct 2022 19:02:04 GMT" ], "Content-Length": [ - "487" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3555,40 +3567,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803/linkedServers/RedisGeo26194\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo24400.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803/linkedServers/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDMvbGlua2VkU2VydmVycy9SZWRpc0dlbzI2MTk0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjQ0MDA/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "82cf8257-a4f5-4f97-9932-5a1df2c5aa5d" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:37:59 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "ca0e9102-205e-4e8e-a17b-348ac5fe5a75" + "f9a77d09-10ec-4eff-83e2-67b26609c602" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3597,16 +3609,22 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11868" + "11960" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "f16d9301-a42f-4922-81b0-f61c28308d96" + "cb9e1a99-5480-499b-81cc-ab3079c82744" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T123800Z:f16d9301-a42f-4922-81b0-f61c28308d96" + "WESTUS2:20221017T190235Z:cb9e1a99-5480-499b-81cc-ab3079c82744" + ], + "Date": [ + "Mon, 17 Oct 2022 19:02:34 GMT" ], "Content-Length": [ - "487" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3615,40 +3633,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803/linkedServers/RedisGeo26194\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo24400.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803/linkedServers/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDMvbGlua2VkU2VydmVycy9SZWRpc0dlbzI2MTk0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjQ0MDA/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "5acebdcc-73a1-4ade-ba6f-e08953dd43e3" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:38:30 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "c81314fa-aec4-45a7-bc9b-3d78d42d0636" + "581a8822-2c4d-43c0-8c8b-d395eaf850b5" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3656,17 +3674,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11867" + "11958" ], "x-ms-correlation-request-id": [ - "64411cd2-e43b-4114-bd72-c71998ea0647" + "b58100b6-9cd1-4652-9275-3663afd34052" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T123831Z:64411cd2-e43b-4114-bd72-c71998ea0647" + "WESTUS2:20221017T190305Z:b58100b6-9cd1-4652-9275-3663afd34052" + ], + "Date": [ + "Mon, 17 Oct 2022 19:03:05 GMT" ], "Content-Length": [ - "487" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3675,40 +3699,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803/linkedServers/RedisGeo26194\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo24400.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803/linkedServers/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDMvbGlua2VkU2VydmVycy9SZWRpc0dlbzI2MTk0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjQ0MDA/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ab3e78dc-81c4-46d7-a838-7a1284973be5" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:39:00 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "2d1c4ab0-8698-488f-97a5-3ef11743280e" + "cb867e3f-5cb5-4405-bba4-99a8641b0cea" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3716,17 +3740,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11866" + "11956" ], "x-ms-correlation-request-id": [ - "704f5797-c5a9-4d32-9aa8-d4f3c353ff83" + "1e7cdde2-c2e1-4393-ae25-a0a09935c4b0" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T123901Z:704f5797-c5a9-4d32-9aa8-d4f3c353ff83" + "WESTUS2:20221017T190336Z:1e7cdde2-c2e1-4393-ae25-a0a09935c4b0" + ], + "Date": [ + "Mon, 17 Oct 2022 19:03:35 GMT" ], "Content-Length": [ - "487" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3735,40 +3765,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803/linkedServers/RedisGeo26194\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo24400.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803/linkedServers/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDMvbGlua2VkU2VydmVycy9SZWRpc0dlbzI2MTk0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjQ0MDA/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "aec1a965-aa79-4c6a-95d1-4b6fe374dcf9" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:39:31 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "c51c53fc-58e8-4200-a335-c31fd81526b5" + "d6839ceb-417f-47ed-9806-1c1044324144" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3776,17 +3806,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11865" + "11954" ], "x-ms-correlation-request-id": [ - "36a19c62-82c4-4438-8250-1230b294cf4b" + "7069d467-351d-4a68-9344-be6267295765" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T123932Z:36a19c62-82c4-4438-8250-1230b294cf4b" + "WESTUS2:20221017T190407Z:7069d467-351d-4a68-9344-be6267295765" + ], + "Date": [ + "Mon, 17 Oct 2022 19:04:06 GMT" ], "Content-Length": [ - "487" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3795,40 +3831,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803/linkedServers/RedisGeo26194\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo24400.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803/linkedServers/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDMvbGlua2VkU2VydmVycy9SZWRpc0dlbzI2MTk0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjQ0MDA/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "729ed4c3-ba80-41da-b96e-50a523a28b4d" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:40:02 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "014001e2-212f-4d34-abc0-3d64e58f2028" + "85156a9a-607d-44a3-a7c0-82df7b26f714" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3836,17 +3872,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11887" + "11952" ], "x-ms-correlation-request-id": [ - "c48831d0-78e4-434b-bde9-4632eda8291c" + "5caf14a9-1df9-41be-84a5-7be25d226266" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T124003Z:c48831d0-78e4-434b-bde9-4632eda8291c" + "WESTUS2:20221017T190437Z:5caf14a9-1df9-41be-84a5-7be25d226266" + ], + "Date": [ + "Mon, 17 Oct 2022 19:04:37 GMT" ], "Content-Length": [ - "487" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3855,40 +3897,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803/linkedServers/RedisGeo26194\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo24400.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803/linkedServers/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDMvbGlua2VkU2VydmVycy9SZWRpc0dlbzI2MTk0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjQ0MDA/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b7e847c8-9334-4256-b7d2-be7cff091398" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:40:42 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "1ca9d43c-7eae-4e4d-a01a-04883d13a053" + "5a15da8b-e840-44ab-9952-9c2348b688a3" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3896,17 +3938,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11886" + "11950" ], "x-ms-correlation-request-id": [ - "96954f97-78de-49c9-8fc1-670e613c4803" + "e1286969-7af0-43a8-a300-48f6e9b8172d" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T124042Z:96954f97-78de-49c9-8fc1-670e613c4803" + "WESTUS2:20221017T190507Z:e1286969-7af0-43a8-a300-48f6e9b8172d" + ], + "Date": [ + "Mon, 17 Oct 2022 19:05:07 GMT" ], "Content-Length": [ - "487" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3915,40 +3963,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803/linkedServers/RedisGeo26194\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo24400.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803/linkedServers/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDMvbGlua2VkU2VydmVycy9SZWRpc0dlbzI2MTk0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjQ0MDA/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "066f2e3d-f33c-405b-9cd8-6a1eb4488259" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:41:12 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "e55b3972-2c74-4b23-b769-cc8adb9ea2ad" + "ced02609-e333-4ef2-9ffb-cca472defcd6" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3956,17 +4004,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11885" + "11948" ], "x-ms-correlation-request-id": [ - "2adcd5a8-a334-42c4-acc6-381765604b08" + "18c9e830-0ac1-4e91-85f9-5cb157f03702" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T124113Z:2adcd5a8-a334-42c4-acc6-381765604b08" + "WESTUS2:20221017T190538Z:18c9e830-0ac1-4e91-85f9-5cb157f03702" + ], + "Date": [ + "Mon, 17 Oct 2022 19:05:37 GMT" ], "Content-Length": [ - "487" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3975,40 +4029,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803/linkedServers/RedisGeo26194\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo24400.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803/linkedServers/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDMvbGlua2VkU2VydmVycy9SZWRpc0dlbzI2MTk0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjQ0MDA/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "8d2150f4-5c19-4787-aacc-e9ce8502ffdd" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:41:42 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "9e2a349a-012a-4a0e-9982-0f23d116786b" + "8d9296a4-96c2-4e26-82a1-036a289edbb8" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4016,17 +4070,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11884" + "11946" ], "x-ms-correlation-request-id": [ - "a56b101d-bdeb-428f-8205-6b69bc27ec85" + "f00614dc-e68f-4ea8-b2dc-e8d5eea022cf" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T124143Z:a56b101d-bdeb-428f-8205-6b69bc27ec85" + "WESTUS2:20221017T190609Z:f00614dc-e68f-4ea8-b2dc-e8d5eea022cf" + ], + "Date": [ + "Mon, 17 Oct 2022 19:06:09 GMT" ], "Content-Length": [ - "487" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4035,40 +4095,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803/linkedServers/RedisGeo26194\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo24400.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803/linkedServers/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDMvbGlua2VkU2VydmVycy9SZWRpc0dlbzI2MTk0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjQ0MDA/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "29006dcf-7ec2-4af6-8400-7a257e0973e5" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:42:14 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "cce35dce-1438-4c32-a81a-0a0e5df3206d" + "d7c358bf-c39d-43dd-9504-15bfd919a90f" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4076,17 +4136,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11883" + "11944" ], "x-ms-correlation-request-id": [ - "07578206-2533-4404-ac7e-fe42cc48b5ea" + "afaeb55f-296e-4539-a576-d0a360270b31" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T124214Z:07578206-2533-4404-ac7e-fe42cc48b5ea" + "WESTUS2:20221017T190639Z:afaeb55f-296e-4539-a576-d0a360270b31" + ], + "Date": [ + "Mon, 17 Oct 2022 19:06:39 GMT" ], "Content-Length": [ - "486" + "761" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4095,40 +4161,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803/linkedServers/RedisGeo26194\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"provisioningState\": \"Syncing\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo24400.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803/linkedServers/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDMvbGlua2VkU2VydmVycy9SZWRpc0dlbzI2MTk0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjQ0MDA/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "80292053-3911-4917-9432-c4379ef7e52b" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:42:45 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "fd60ddbd-a3b6-47cf-93cb-8f21d8660bf3" + "c67d1e20-a1f3-46c6-bda9-e0a86c37df01" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4136,17 +4202,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11882" + "11942" ], "x-ms-correlation-request-id": [ - "e6bc8988-b860-4135-bd14-686de7b7c940" + "9073970e-e563-4cdb-ac15-1d5d6d32dfb3" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T124245Z:e6bc8988-b860-4135-bd14-686de7b7c940" + "WESTUS2:20221017T190709Z:9073970e-e563-4cdb-ac15-1d5d6d32dfb3" + ], + "Date": [ + "Mon, 17 Oct 2022 19:07:09 GMT" ], "Content-Length": [ - "486" + "762" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4155,40 +4227,49 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803/linkedServers/RedisGeo26194\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"provisioningState\": \"Syncing\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo24400.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803/linkedServers/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDMvbGlua2VkU2VydmVycy9SZWRpc0dlbzI2MTk0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589/linkedServers/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODkvbGlua2VkU2VydmVycy9SZWRpc0dlbzI0NDAwP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "a6bf224b-0f26-44de-be77-513c1e8fd1b7" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "259" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:43:15 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/4339405e-b0f5-4e72-9ea3-1ddef03bd0b3?api-version=2022-06-01" ], "x-ms-request-id": [ - "05e29c80-540d-4b91-9200-de669008bc7c" + "4339405e-b0f5-4e72-9ea3-1ddef03bd0b3" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4196,17 +4277,23 @@ "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11881" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" ], "x-ms-correlation-request-id": [ - "0ad609a6-2cc7-478c-8b61-86d08671353d" + "71f9beb9-377e-4a10-855b-617c3e1a2c8b" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T124316Z:0ad609a6-2cc7-478c-8b61-86d08671353d" + "WESTUS2:20221017T190711Z:71f9beb9-377e-4a10-855b-617c3e1a2c8b" + ], + "Date": [ + "Mon, 17 Oct 2022 19:07:10 GMT" ], "Content-Length": [ - "486" + "709" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4215,40 +4302,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803/linkedServers/RedisGeo26194\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"provisioningState\": \"Syncing\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589/linkedServers/RedisGeo24400\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"geoReplicatedPrimaryHostName\": \"RedisGeo13589.geo.redis.cache.windows.net\",\r\n \"geoReplicatedPrimaryHostNameDnsCName\": \"RedisGeo13589.redis.cache.windows.net\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803/linkedServers/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDMvbGlua2VkU2VydmVycy9SZWRpc0dlbzI2MTk0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589/linkedServers/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODkvbGlua2VkU2VydmVycy9SZWRpc0dlbzI0NDAwP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "be0c04f2-2759-4c9a-ae73-1332e235b60a" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:43:46 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "0400efb6-e7d0-4419-821c-e51975cc7075" + "7ff2c0f9-1901-48c9-97e3-9cc9984fbc0a" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4256,17 +4343,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11880" + "11941" ], "x-ms-correlation-request-id": [ - "c413b48e-048c-4789-ad06-1086fbd77327" + "01ce7f0a-e566-4fb1-ab62-bc8c348dc19f" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T124346Z:c413b48e-048c-4789-ad06-1086fbd77327" + "WESTUS2:20221017T190712Z:01ce7f0a-e566-4fb1-ab62-bc8c348dc19f" + ], + "Date": [ + "Mon, 17 Oct 2022 19:07:12 GMT" ], "Content-Length": [ - "486" + "487" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4275,40 +4368,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803/linkedServers/RedisGeo26194\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"provisioningState\": \"Syncing\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589/linkedServers/RedisGeo24400\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803/linkedServers/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDMvbGlua2VkU2VydmVycy9SZWRpc0dlbzI2MTk0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589/linkedServers/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODkvbGlua2VkU2VydmVycy9SZWRpc0dlbzI0NDAwP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "82ccdde6-b9e2-40d0-b80a-946a7db671ee" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:44:17 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "68e7e19c-cacc-4f84-824d-222306c96ac1" + "435c4d17-dda7-43cd-8253-737181bf61f0" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4316,17 +4409,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11879" + "11940" ], "x-ms-correlation-request-id": [ - "8ab6338a-3820-469c-b5d2-fb75c1e81df9" + "c1f94d2e-f04e-47a4-9cc2-5aecad69d32d" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T124417Z:8ab6338a-3820-469c-b5d2-fb75c1e81df9" + "WESTUS2:20221017T190744Z:c1f94d2e-f04e-47a4-9cc2-5aecad69d32d" + ], + "Date": [ + "Mon, 17 Oct 2022 19:07:43 GMT" ], "Content-Length": [ - "488" + "487" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4335,46 +4434,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803/linkedServers/RedisGeo26194\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589/linkedServers/RedisGeo24400\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803/linkedServers/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDMvbGlua2VkU2VydmVycy9SZWRpc0dlbzI2MTk0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589/linkedServers/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODkvbGlua2VkU2VydmVycy9SZWRpc0dlbzI0NDAwP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42324f82-2d7d-436b-b5d9-430737e1b18c" + "dd2cdde7-5e80-4dac-86a6-2f356d19d982" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:44:17 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "f141b6c8-ae29-4d0d-ad64-1d17edacc77a" + "7f92ba62-cf2a-422b-9264-c88c5bfc360c" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4382,17 +4475,23 @@ "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11878" - ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11939" + ], "x-ms-correlation-request-id": [ - "9f28cafe-046c-4945-98e9-d785f3fa03a3" + "990354d3-d540-4151-8cd9-4d931fc8f0bd" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T124418Z:9f28cafe-046c-4945-98e9-d785f3fa03a3" + "WESTUS2:20221017T190815Z:990354d3-d540-4151-8cd9-4d931fc8f0bd" + ], + "Date": [ + "Mon, 17 Oct 2022 19:08:14 GMT" ], "Content-Length": [ - "488" + "487" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4401,46 +4500,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803/linkedServers/RedisGeo26194\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589/linkedServers/RedisGeo24400\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803/linkedServers?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDMvbGlua2VkU2VydmVycz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589/linkedServers/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODkvbGlua2VkU2VydmVycy9SZWRpc0dlbzI0NDAwP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "65b73759-a434-4f3a-aa05-9ba6070bc705" + "d6bf907d-5900-4dc0-9dba-954cfdd780aa" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:44:18 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "c709b36b-c027-42ed-a93c-9f9fec86f6cc" + "9ae3a35a-b4bb-48c0-8d9b-b002d5b63d0e" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4448,17 +4541,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11877" + "11938" ], "x-ms-correlation-request-id": [ - "822fe4c6-a2c8-400e-9865-8799e9499561" + "895a26bc-ac46-42be-bfa0-3734e0787854" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T124418Z:822fe4c6-a2c8-400e-9865-8799e9499561" + "WESTUS2:20221017T190845Z:895a26bc-ac46-42be-bfa0-3734e0787854" + ], + "Date": [ + "Mon, 17 Oct 2022 19:08:45 GMT" ], "Content-Length": [ - "500" + "487" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4467,46 +4566,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803/linkedServers/RedisGeo26194\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589/linkedServers/RedisGeo24400\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803/linkedServers?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDMvbGlua2VkU2VydmVycz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589/linkedServers/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODkvbGlua2VkU2VydmVycy9SZWRpc0dlbzI0NDAwP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17cdafe9-782c-4ce3-b464-b0673dd2a3d3" + "3c2d2f55-2963-4fff-92d0-b938e20c949e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:44:49 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "a19d8809-4570-40e6-82ce-3f814e6fcc36" + "e3d1be6a-3dbf-42c4-8913-b462eb3b4c65" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4514,17 +4607,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11874" + "11937" ], "x-ms-correlation-request-id": [ - "c020ec71-ec72-493a-bc83-1ca8f5cb418b" + "07cecc7a-c40d-4cfb-9694-bb15cee922ae" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T124450Z:c020ec71-ec72-493a-bc83-1ca8f5cb418b" + "WESTUS2:20221017T190916Z:07cecc7a-c40d-4cfb-9694-bb15cee922ae" + ], + "Date": [ + "Mon, 17 Oct 2022 19:09:16 GMT" ], "Content-Length": [ - "499" + "487" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4533,46 +4632,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803/linkedServers/RedisGeo26194\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589/linkedServers/RedisGeo24400\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803/linkedServers?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDMvbGlua2VkU2VydmVycz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589/linkedServers/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODkvbGlua2VkU2VydmVycy9SZWRpc0dlbzI0NDAwP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "683a2ac7-6e50-4706-9092-819ab3fac249" + "45c6b3ab-9ea6-4510-82f8-ff6155dd5201" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:45:21 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "7f4686ad-73a6-4c9d-aae3-65d10f9beea5" + "1690cc79-8df1-4bcf-94a1-c83c9d07c862" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4580,17 +4673,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11892" + "11936" ], "x-ms-correlation-request-id": [ - "d70dc3c7-8f0e-4175-94ed-682e29b83c5f" + "de7d49e4-a68b-42b4-9014-d447c1a0447d" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T124521Z:d70dc3c7-8f0e-4175-94ed-682e29b83c5f" + "WESTUS2:20221017T190947Z:de7d49e4-a68b-42b4-9014-d447c1a0447d" + ], + "Date": [ + "Mon, 17 Oct 2022 19:09:47 GMT" ], "Content-Length": [ - "499" + "487" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4599,46 +4698,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803/linkedServers/RedisGeo26194\",\r\n \"name\": \"RedisGeo26194\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589/linkedServers/RedisGeo24400\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803/linkedServers?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDMvbGlua2VkU2VydmVycz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589/linkedServers/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODkvbGlua2VkU2VydmVycy9SZWRpc0dlbzI0NDAwP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8626b7ba-07ea-4b82-8a8f-e267ab0c041d" + "18c4841b-d9fc-446c-aee6-43ac16d01c29" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:45:51 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "0589d16b-391a-4b21-a51e-ec6208eabc17" + "800e1359-f3fd-4ac0-a443-d4e9b949a582" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4647,16 +4740,22 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11890" + "11935" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "8f432f73-7140-4366-a7eb-1ea1b734720f" + "a3cdb686-7af9-40a5-9cab-958ac5e3e213" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T124551Z:8f432f73-7140-4366-a7eb-1ea1b734720f" + "WESTUS2:20221017T191019Z:a3cdb686-7af9-40a5-9cab-958ac5e3e213" + ], + "Date": [ + "Mon, 17 Oct 2022 19:10:19 GMT" ], "Content-Length": [ - "12" + "487" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4665,46 +4764,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589/linkedServers/RedisGeo24400\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803/linkedServers?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDMvbGlua2VkU2VydmVycz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589/linkedServers/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODkvbGlua2VkU2VydmVycy9SZWRpc0dlbzI0NDAwP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7946b30-8652-46f8-b876-ad4de982860b" + "04d70728-88a7-4729-a43a-179e1c12ce84" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:46:22 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "86c2df95-7297-4fc8-8686-aa779669a70b" + "b70ebe85-0cd2-420c-9378-fe31b7b90828" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4712,17 +4805,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11888" + "11934" ], "x-ms-correlation-request-id": [ - "d48cd234-c15f-4cc6-a51a-fcf56b78af41" + "7316ca62-9a4a-4c0e-975e-77736ed2e48a" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T124622Z:d48cd234-c15f-4cc6-a51a-fcf56b78af41" + "WESTUS2:20221017T191050Z:7316ca62-9a4a-4c0e-975e-77736ed2e48a" + ], + "Date": [ + "Mon, 17 Oct 2022 19:10:50 GMT" ], "Content-Length": [ - "12" + "487" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4731,46 +4830,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589/linkedServers/RedisGeo24400\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803/linkedServers?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDMvbGlua2VkU2VydmVycz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589/linkedServers/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODkvbGlua2VkU2VydmVycy9SZWRpc0dlbzI0NDAwP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f86d095-5973-4f60-940f-191d6182d68c" + "26408d87-27be-4a8f-b4d4-5d16bbc42492" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:46:52 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "cbe48e31-31d9-41a6-94d2-1dc3cd4034c7" + "97cc9972-ce9a-4fe9-83ca-9922ca02a15a" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4778,17 +4871,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11886" + "11933" ], "x-ms-correlation-request-id": [ - "2bbf4005-ea63-4a64-9f6e-5ecdb370b2fc" + "ab071489-89c2-4c0b-8eb2-4cdf83e40879" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T124653Z:2bbf4005-ea63-4a64-9f6e-5ecdb370b2fc" + "WESTUS2:20221017T191121Z:ab071489-89c2-4c0b-8eb2-4cdf83e40879" + ], + "Date": [ + "Mon, 17 Oct 2022 19:11:21 GMT" ], "Content-Length": [ - "12" + "487" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4797,46 +4896,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589/linkedServers/RedisGeo24400\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo26194/linkedServers/RedisGeo11803?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjYxOTQvbGlua2VkU2VydmVycy9SZWRpc0dlbzExODAzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589/linkedServers/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODkvbGlua2VkU2VydmVycy9SZWRpc0dlbzI0NDAwP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cd69b066-743a-473b-b507-b5aeed20be60" + "a97469cc-61bb-4c8d-af11-b1e2f9f08182" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:44:18 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "2e98afaf-97fc-49b4-be41-3739947ec46d" + "7d69e233-bdee-47c9-ae06-ee2b07eb9c34" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4844,17 +4937,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11876" + "11932" ], "x-ms-correlation-request-id": [ - "349a10a8-7db5-4148-a7b3-32344be74a4b" + "ef66ece9-813f-41e2-ac86-e6006b7df8a0" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T124419Z:349a10a8-7db5-4148-a7b3-32344be74a4b" + "WESTUS2:20221017T191152Z:ef66ece9-813f-41e2-ac86-e6006b7df8a0" + ], + "Date": [ + "Mon, 17 Oct 2022 19:11:51 GMT" ], "Content-Length": [ - "486" + "487" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4863,46 +4962,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194/linkedServers/RedisGeo11803\",\r\n \"name\": \"RedisGeo11803\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803\",\r\n \"linkedRedisCacheLocation\": \"West US\",\r\n \"serverRole\": \"Primary\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589/linkedServers/RedisGeo24400\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo26194/linkedServers?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjYxOTQvbGlua2VkU2VydmVycz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589/linkedServers/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODkvbGlua2VkU2VydmVycy9SZWRpc0dlbzI0NDAwP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d8315a43-da0a-4b42-aa50-37effead1b1d" + "e850f7ce-e9ec-4e7c-bef8-52b9423d60ed" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:44:19 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "fe1a3bdb-d88a-46a5-9552-34079fc613f8" + "a4be50a5-20ec-4a88-ae49-ae0dc3a0fa44" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4910,17 +5003,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11875" + "11931" ], "x-ms-correlation-request-id": [ - "fe0d6b05-32b8-4dcf-82a9-0c56c2b365d2" + "05bc57e4-40a5-443a-a455-e0bc0c43381a" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T124419Z:fe0d6b05-32b8-4dcf-82a9-0c56c2b365d2" + "WESTUS2:20221017T191224Z:05bc57e4-40a5-443a-a455-e0bc0c43381a" + ], + "Date": [ + "Mon, 17 Oct 2022 19:12:24 GMT" ], "Content-Length": [ - "498" + "487" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4929,46 +5028,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194/linkedServers/RedisGeo11803\",\r\n \"name\": \"RedisGeo11803\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803\",\r\n \"linkedRedisCacheLocation\": \"West US\",\r\n \"serverRole\": \"Primary\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589/linkedServers/RedisGeo24400\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo26194/linkedServers?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjYxOTQvbGlua2VkU2VydmVycz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589/linkedServers/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODkvbGlua2VkU2VydmVycy9SZWRpc0dlbzI0NDAwP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d792724-4ebd-4a29-b800-4f296d947d9a" + "eecfe7b6-89e9-4db5-ba4e-51692740ca6e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:44:50 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "8917d2e9-a995-4810-8d8d-2cf903e30cd2" + "3faa428a-b06b-4044-9fe3-d3c03cff2957" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4976,17 +5069,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11873" + "11930" ], "x-ms-correlation-request-id": [ - "f156b0b2-4c8e-4d68-8869-f6c86dcaa913" + "5922fcc8-7d60-4e10-995e-1a919abb1411" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T124450Z:f156b0b2-4c8e-4d68-8869-f6c86dcaa913" + "WESTUS2:20221017T191255Z:5922fcc8-7d60-4e10-995e-1a919abb1411" + ], + "Date": [ + "Mon, 17 Oct 2022 19:12:55 GMT" ], "Content-Length": [ - "498" + "487" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4995,46 +5094,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194/linkedServers/RedisGeo11803\",\r\n \"name\": \"RedisGeo11803\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803\",\r\n \"linkedRedisCacheLocation\": \"West US\",\r\n \"serverRole\": \"Primary\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589/linkedServers/RedisGeo24400\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo26194/linkedServers?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjYxOTQvbGlua2VkU2VydmVycz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589/linkedServers/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODkvbGlua2VkU2VydmVycy9SZWRpc0dlbzI0NDAwP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "481595c9-b851-422f-877a-1b97003c4c4e" + "c42c6ba1-1ed3-4464-8465-ba42a80dc00a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:45:21 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "9672b730-ace7-4709-a6e9-fe49db97d9e9" + "02f93a21-4028-4637-8b76-d35e6ce146a4" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5042,17 +5135,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11891" + "11929" ], "x-ms-correlation-request-id": [ - "745f8498-bf9f-4923-9c52-71fd338a0674" + "939ec87e-0429-4048-b5ba-c4ed68dc7867" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T124521Z:745f8498-bf9f-4923-9c52-71fd338a0674" + "WESTUS2:20221017T191326Z:939ec87e-0429-4048-b5ba-c4ed68dc7867" + ], + "Date": [ + "Mon, 17 Oct 2022 19:13:25 GMT" ], "Content-Length": [ - "498" + "486" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5061,46 +5160,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194/linkedServers/RedisGeo11803\",\r\n \"name\": \"RedisGeo11803\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803\",\r\n \"linkedRedisCacheLocation\": \"West US\",\r\n \"serverRole\": \"Primary\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589/linkedServers/RedisGeo24400\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"provisioningState\": \"Syncing\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo26194/linkedServers?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjYxOTQvbGlua2VkU2VydmVycz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589/linkedServers/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODkvbGlua2VkU2VydmVycy9SZWRpc0dlbzI0NDAwP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "56e625ef-0690-421a-b879-d94f2674b251" + "f571f74f-1cf8-476a-b495-fca5c0bc0d76" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:45:51 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "bc541984-5466-47e5-adb3-712556f10837" + "167a1dfa-97e8-45cc-8379-141ccbcdc358" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5108,17 +5201,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11889" + "11928" ], "x-ms-correlation-request-id": [ - "ee7c416a-2ff7-4601-a043-b82c6a725c7c" + "ae695898-ecc8-4dc6-a3f7-a734a9bb44be" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T124552Z:ee7c416a-2ff7-4601-a043-b82c6a725c7c" + "WESTUS2:20221017T191357Z:ae695898-ecc8-4dc6-a3f7-a734a9bb44be" + ], + "Date": [ + "Mon, 17 Oct 2022 19:13:56 GMT" ], "Content-Length": [ - "497" + "486" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5127,46 +5226,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194/linkedServers/RedisGeo11803\",\r\n \"name\": \"RedisGeo11803\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803\",\r\n \"linkedRedisCacheLocation\": \"West US\",\r\n \"serverRole\": \"Primary\",\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589/linkedServers/RedisGeo24400\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"provisioningState\": \"Syncing\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo26194/linkedServers?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjYxOTQvbGlua2VkU2VydmVycz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589/linkedServers/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODkvbGlua2VkU2VydmVycy9SZWRpc0dlbzI0NDAwP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1e3ae702-5681-4900-9eed-6911cdc61335" + "9c5562d1-d322-4751-96ba-73a560c700f6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:46:22 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "d749a4bb-ee7a-48d1-9d5c-f6af17c9258a" + "2ef018bd-3441-4ef3-b718-f9093949b09f" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5174,17 +5267,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11887" + "11927" ], "x-ms-correlation-request-id": [ - "003988a6-e463-421a-8a7a-7552005a9379" + "c4ba7201-d451-4d60-b2d1-80d4f1f9ce94" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T124622Z:003988a6-e463-421a-8a7a-7552005a9379" + "WESTUS2:20221017T191428Z:c4ba7201-d451-4d60-b2d1-80d4f1f9ce94" + ], + "Date": [ + "Mon, 17 Oct 2022 19:14:28 GMT" ], "Content-Length": [ - "497" + "486" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5193,46 +5292,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo26194/linkedServers/RedisGeo11803\",\r\n \"name\": \"RedisGeo11803\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/Redis/RedisGeo11803\",\r\n \"linkedRedisCacheLocation\": \"West US\",\r\n \"serverRole\": \"Primary\",\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589/linkedServers/RedisGeo24400\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"provisioningState\": \"Syncing\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo26194/linkedServers?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjYxOTQvbGlua2VkU2VydmVycz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589/linkedServers/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODkvbGlua2VkU2VydmVycy9SZWRpc0dlbzI0NDAwP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb841572-7782-4a6c-aa2a-e6add406d4d0" + "83ef1e1c-5b53-4ab6-9a16-fe081c9f9166" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:46:52 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "2e83343b-e1c2-4389-9205-6c57e7d407c1" + "99ee2417-fc0e-4494-9d75-521f361018e9" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5240,17 +5333,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11885" + "11926" ], "x-ms-correlation-request-id": [ - "fcfdc412-82ac-49a9-a428-164ac275f3c8" + "a8f6d90a-2636-4b21-a6ae-682e4bf0ff9f" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T124653Z:fcfdc412-82ac-49a9-a428-164ac275f3c8" + "WESTUS2:20221017T191459Z:a8f6d90a-2636-4b21-a6ae-682e4bf0ff9f" + ], + "Date": [ + "Mon, 17 Oct 2022 19:14:58 GMT" ], "Content-Length": [ - "12" + "486" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5259,46 +5358,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589/linkedServers/RedisGeo24400\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"provisioningState\": \"Syncing\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803/linkedServers/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDMvbGlua2VkU2VydmVycy9SZWRpc0dlbzI2MTk0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589/linkedServers/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODkvbGlua2VkU2VydmVycy9SZWRpc0dlbzI0NDAwP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "038671db-9900-4ebf-b580-5d64c7d77b3a" + "380ec4d2-1db4-414a-b7cc-45eb678ae51c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:44:19 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "38d62218-0f06-46bf-88db-e7f5d38f82e2" + "a355fa09-9309-4050-853b-bb7874db102e" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5306,62 +5399,65 @@ "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11925" ], "x-ms-correlation-request-id": [ - "9f5c2408-e681-47ce-aad6-55731c2b0335" + "133a64f2-3fed-4330-b10a-ec15123aba6b" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T124420Z:9f5c2408-e681-47ce-aad6-55731c2b0335" + "WESTUS2:20221017T191529Z:133a64f2-3fed-4330-b10a-ec15123aba6b" + ], + "Date": [ + "Mon, 17 Oct 2022 19:15:29 GMT" + ], + "Content-Length": [ + "642" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "", - "StatusCode": 204 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589/linkedServers/RedisGeo24400\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"geoReplicatedPrimaryHostName\": \"RedisGeo24400.geo.redis.cache.windows.net\",\r\n \"geoReplicatedPrimaryHostNameDnsCName\": \"RedisGeo13589.redis.cache.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo11803?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTE4MDM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589/linkedServers/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODkvbGlua2VkU2VydmVycy9SZWRpc0dlbzI0NDAwP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4c1ca8d5-4b12-4bf8-b12f-b45741724d19" + "332d01df-3fb4-40f1-bae6-3adf2b9c58fb" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:46:53 GMT" - ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/c004cb8e-25d9-4ae1-bc0a-18c63221072e?api-version=2021-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "c004cb8e-25d9-4ae1-bc0a-18c63221072e" + "3dc8a8b0-f00e-4983-a070-f12f10d908e1" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5369,59 +5465,65 @@ "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11924" ], "x-ms-correlation-request-id": [ - "51bbf806-a3ea-494c-b7c0-4c87124b2982" + "8a330126-b6d4-4518-a105-443b730119db" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T124654Z:51bbf806-a3ea-494c-b7c0-4c87124b2982" + "WESTUS2:20221017T191530Z:8a330126-b6d4-4518-a105-443b730119db" + ], + "Date": [ + "Mon, 17 Oct 2022 19:15:30 GMT" ], "Content-Length": [ - "0" + "642" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589/linkedServers/RedisGeo24400\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"geoReplicatedPrimaryHostName\": \"RedisGeo24400.geo.redis.cache.windows.net\",\r\n \"geoReplicatedPrimaryHostNameDnsCName\": \"RedisGeo13589.redis.cache.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/c004cb8e-25d9-4ae1-bc0a-18c63221072e?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2MwMDRjYjhlLTI1ZDktNGFlMS1iYzBhLTE4YzYzMjIxMDcyZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589/linkedServers?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODkvbGlua2VkU2VydmVycz9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "9fcb5003-c7b9-4b9b-99ff-cd28936df4e8" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:47:24 GMT" - ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/c004cb8e-25d9-4ae1-bc0a-18c63221072e?api-version=2021-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "69010d89-03b1-4cb7-a0e6-bc67c9b766d3" + "4ededa1d-8588-44ab-83a4-7a3079809c2e" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5429,59 +5531,65 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11884" + "11923" ], "x-ms-correlation-request-id": [ - "35caeeda-be60-4d68-a759-aacec5b6e24e" + "472b0515-933b-4abe-8a0d-09ced6bef49b" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T124724Z:35caeeda-be60-4d68-a759-aacec5b6e24e" + "WESTUS2:20221017T191531Z:472b0515-933b-4abe-8a0d-09ced6bef49b" + ], + "Date": [ + "Mon, 17 Oct 2022 19:15:31 GMT" ], "Content-Length": [ - "0" + "654" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589/linkedServers/RedisGeo24400\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"geoReplicatedPrimaryHostName\": \"RedisGeo24400.geo.redis.cache.windows.net\",\r\n \"geoReplicatedPrimaryHostNameDnsCName\": \"RedisGeo13589.redis.cache.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/c004cb8e-25d9-4ae1-bc0a-18c63221072e?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2MwMDRjYjhlLTI1ZDktNGFlMS1iYzBhLTE4YzYzMjIxMDcyZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589/linkedServers?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODkvbGlua2VkU2VydmVycz9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f51ac15b-313d-491c-a1cd-742487398476" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:47:55 GMT" - ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/c004cb8e-25d9-4ae1-bc0a-18c63221072e?api-version=2021-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "452c8725-8776-4da5-868f-32300a2a9f01" + "a9c090c9-109a-4e0d-a98f-25f6a6f8ec8e" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5489,59 +5597,1175 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11883" + "11920" ], "x-ms-correlation-request-id": [ - "b647c191-4723-4f73-b7ff-edda92833678" + "4e411acf-59df-4ffc-8843-f940195bece3" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T124755Z:b647c191-4723-4f73-b7ff-edda92833678" + "WESTUS2:20221017T191605Z:4e411acf-59df-4ffc-8843-f940195bece3" + ], + "Date": [ + "Mon, 17 Oct 2022 19:16:04 GMT" ], "Content-Length": [ - "0" + "653" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589/linkedServers/RedisGeo24400\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"geoReplicatedPrimaryHostName\": \"RedisGeo24400.geo.redis.cache.windows.net\",\r\n \"geoReplicatedPrimaryHostNameDnsCName\": \"RedisGeo13589.redis.cache.windows.net\",\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589/linkedServers?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODkvbGlua2VkU2VydmVycz9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f36122c6-7252-4dac-9441-5b9a4124b66f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c45520aa-8032-43ad-a341-2de7b04b2b8b" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11918" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "34d67b43-9ab1-4c69-961f-755750416a48" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T191636Z:34d67b43-9ab1-4c69-961f-755750416a48" + ], + "Date": [ + "Mon, 17 Oct 2022 19:16:36 GMT" + ], + "Content-Length": [ + "654" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589/linkedServers/RedisGeo24400\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"geoReplicatedPrimaryHostName\": \"RedisGeo24400.geo.redis.cache.windows.net\",\r\n \"geoReplicatedPrimaryHostNameDnsCName\": \"RedisGeo13589.redis.cache.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589/linkedServers?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODkvbGlua2VkU2VydmVycz9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6f59c4ea-3b44-4098-b1e7-afaef6f41aee" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5e48efbe-33e8-4e12-a876-26e7a4cf3872" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11916" + ], + "x-ms-correlation-request-id": [ + "98f1393c-d36f-4e76-b344-d82dea2e11ac" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T191708Z:98f1393c-d36f-4e76-b344-d82dea2e11ac" + ], + "Date": [ + "Mon, 17 Oct 2022 19:17:07 GMT" + ], + "Content-Length": [ + "654" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589/linkedServers/RedisGeo24400\",\r\n \"name\": \"RedisGeo24400\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Secondary\",\r\n \"geoReplicatedPrimaryHostName\": \"RedisGeo24400.geo.redis.cache.windows.net\",\r\n \"geoReplicatedPrimaryHostNameDnsCName\": \"RedisGeo13589.redis.cache.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589/linkedServers?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODkvbGlua2VkU2VydmVycz9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "575ecd9b-ffc8-42b7-80ba-932423c3f190" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7c69fa0f-68fb-4c28-a1b5-6c6bcde3a3f6" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11914" + ], + "x-ms-correlation-request-id": [ + "c209e66c-5c19-4287-84f1-787797248d05" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T191739Z:c209e66c-5c19-4287-84f1-787797248d05" + ], + "Date": [ + "Mon, 17 Oct 2022 19:17:38 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589/linkedServers?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODkvbGlua2VkU2VydmVycz9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "90e56b0c-10f2-4064-94f7-d5f8a979a7dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4dba41fc-92c7-4eed-95a7-905df6b3d970" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11912" + ], + "x-ms-correlation-request-id": [ + "65e6450b-d5c0-4cf9-ab59-ae85fb1037d6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T191809Z:65e6450b-d5c0-4cf9-ab59-ae85fb1037d6" + ], + "Date": [ + "Mon, 17 Oct 2022 19:18:09 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589/linkedServers?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODkvbGlua2VkU2VydmVycz9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3fcb129e-881b-436e-8be1-e7e58af6bb6a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cd1fedf0-12c9-4d66-94af-1c88db858430" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11910" + ], + "x-ms-correlation-request-id": [ + "f5fc9753-480d-4e91-8853-9f5c2365ad0e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T191841Z:f5fc9753-480d-4e91-8853-9f5c2365ad0e" + ], + "Date": [ + "Mon, 17 Oct 2022 19:18:41 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo24400/linkedServers/RedisGeo13589?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjQ0MDAvbGlua2VkU2VydmVycy9SZWRpc0dlbzEzNTg5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0c543777-28b5-4eef-a87e-02df2b20c565" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2036096b-e59a-469b-9655-f3a997cc9705" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11922" + ], + "x-ms-correlation-request-id": [ + "19b100b0-e931-4b53-bbbe-1885ab7afe58" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T191533Z:19b100b0-e931-4b53-bbbe-1885ab7afe58" + ], + "Date": [ + "Mon, 17 Oct 2022 19:15:32 GMT" + ], + "Content-Length": [ + "486" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400/linkedServers/RedisGeo13589\",\r\n \"name\": \"RedisGeo13589\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589\",\r\n \"linkedRedisCacheLocation\": \"West US\",\r\n \"serverRole\": \"Primary\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo24400/linkedServers?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjQ0MDAvbGlua2VkU2VydmVycz9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "115f4afa-1f83-4c8c-ada3-381ac245636e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e0b8b15b-a9cf-49a1-a52b-0a21331d10cc" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11921" + ], + "x-ms-correlation-request-id": [ + "abd41114-d729-48e4-98a3-4ff583a15328" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T191533Z:abd41114-d729-48e4-98a3-4ff583a15328" + ], + "Date": [ + "Mon, 17 Oct 2022 19:15:33 GMT" + ], + "Content-Length": [ + "498" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400/linkedServers/RedisGeo13589\",\r\n \"name\": \"RedisGeo13589\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589\",\r\n \"linkedRedisCacheLocation\": \"West US\",\r\n \"serverRole\": \"Primary\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo24400/linkedServers?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjQ0MDAvbGlua2VkU2VydmVycz9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3f5e1e2d-2b07-413b-b8c0-1f1e449052df" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b9affa70-4962-4535-97e4-d060c0f81701" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11919" + ], + "x-ms-correlation-request-id": [ + "f9c7fe91-8908-414d-a888-03cff0bc1ba4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T191606Z:f9c7fe91-8908-414d-a888-03cff0bc1ba4" + ], + "Date": [ + "Mon, 17 Oct 2022 19:16:05 GMT" + ], + "Content-Length": [ + "498" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400/linkedServers/RedisGeo13589\",\r\n \"name\": \"RedisGeo13589\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589\",\r\n \"linkedRedisCacheLocation\": \"West US\",\r\n \"serverRole\": \"Primary\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo24400/linkedServers?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjQ0MDAvbGlua2VkU2VydmVycz9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "448177d6-d6fe-4305-a5db-ca1bcf9c1351" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "235cd236-da18-442c-ae1a-144517eec931" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11917" + ], + "x-ms-correlation-request-id": [ + "729db971-b78a-4698-bd42-cdc00a1daf44" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T191637Z:729db971-b78a-4698-bd42-cdc00a1daf44" + ], + "Date": [ + "Mon, 17 Oct 2022 19:16:37 GMT" + ], + "Content-Length": [ + "652" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400/linkedServers/RedisGeo13589\",\r\n \"name\": \"RedisGeo13589\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589\",\r\n \"linkedRedisCacheLocation\": \"West US\",\r\n \"serverRole\": \"Primary\",\r\n \"geoReplicatedPrimaryHostName\": \"RedisGeo13589.geo.redis.cache.windows.net\",\r\n \"geoReplicatedPrimaryHostNameDnsCName\": \"RedisGeo13589.redis.cache.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo24400/linkedServers?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjQ0MDAvbGlua2VkU2VydmVycz9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e6df2223-4ce9-43f4-a5bc-27f0effde4b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d8065a38-0c9f-49d7-838f-88fa50ed1d5b" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11915" + ], + "x-ms-correlation-request-id": [ + "9b4b7d25-f860-4f8f-b151-912f00037c9c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T191709Z:9b4b7d25-f860-4f8f-b151-912f00037c9c" + ], + "Date": [ + "Mon, 17 Oct 2022 19:17:08 GMT" + ], + "Content-Length": [ + "652" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400/linkedServers/RedisGeo13589\",\r\n \"name\": \"RedisGeo13589\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589\",\r\n \"linkedRedisCacheLocation\": \"West US\",\r\n \"serverRole\": \"Primary\",\r\n \"geoReplicatedPrimaryHostName\": \"RedisGeo13589.geo.redis.cache.windows.net\",\r\n \"geoReplicatedPrimaryHostNameDnsCName\": \"RedisGeo13589.redis.cache.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo24400/linkedServers?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjQ0MDAvbGlua2VkU2VydmVycz9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d4c80280-a3c1-44ef-8a1d-258b3ceea02c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d33cb855-77ed-43eb-861b-65fb6d9f9e5c" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11913" + ], + "x-ms-correlation-request-id": [ + "09557c8d-0edd-4a99-b8c8-b3cc2565cbaf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T191739Z:09557c8d-0edd-4a99-b8c8-b3cc2565cbaf" + ], + "Date": [ + "Mon, 17 Oct 2022 19:17:39 GMT" + ], + "Content-Length": [ + "497" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400/linkedServers/RedisGeo13589\",\r\n \"name\": \"RedisGeo13589\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589\",\r\n \"linkedRedisCacheLocation\": \"West US\",\r\n \"serverRole\": \"Primary\",\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo24400/linkedServers?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjQ0MDAvbGlua2VkU2VydmVycz9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0cb70492-d687-425f-8b99-404234eb0074" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d5515ea6-c803-49a6-8b6b-bc1c15026d52" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11911" + ], + "x-ms-correlation-request-id": [ + "618b6ba2-9626-47e4-b7ef-66691a5d67a9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T191811Z:618b6ba2-9626-47e4-b7ef-66691a5d67a9" + ], + "Date": [ + "Mon, 17 Oct 2022 19:18:11 GMT" + ], + "Content-Length": [ + "497" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo24400/linkedServers/RedisGeo13589\",\r\n \"name\": \"RedisGeo13589\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/Redis/RedisGeo13589\",\r\n \"linkedRedisCacheLocation\": \"West US\",\r\n \"serverRole\": \"Primary\",\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo24400/linkedServers?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjQ0MDAvbGlua2VkU2VydmVycz9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "febf927d-5235-452b-9bf7-6436a73476ba" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8114e648-2f0f-41a1-9289-a325a93d2ea0" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11909" + ], + "x-ms-correlation-request-id": [ + "f7b23551-b5f4-4ec7-8c87-49fcf6f67620" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T191841Z:f7b23551-b5f4-4ec7-8c87-49fcf6f67620" + ], + "Date": [ + "Mon, 17 Oct 2022 19:18:41 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589/linkedServers/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODkvbGlua2VkU2VydmVycy9SZWRpc0dlbzI0NDAwP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c804c63c-0cc8-499d-a0b8-b6d1fdab8ba2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/24e29898-4788-4785-98d2-a2e1af974560?api-version=2022-06-01" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/24e29898-4788-4785-98d2-a2e1af974560?api-version=2022-06-01" + ], + "x-ms-request-id": [ + "24e29898-4788-4785-98d2-a2e1af974560" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "89a735d8-be3b-4246-a141-5f5173510edc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T191534Z:89a735d8-be3b-4246-a141-5f5173510edc" + ], + "Date": [ + "Mon, 17 Oct 2022 19:15:33 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo13589?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMTM1ODk/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dc1ea5b0-86bf-4736-beaf-a1c7ddfbad3b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/9e5513e3-cb01-4229-a663-dc7b9fab2a48?api-version=2022-06-01" + ], + "x-ms-request-id": [ + "9e5513e3-cb01-4229-a663-dc7b9fab2a48" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "cacd8623-098c-424e-8800-a7e3ecae7d5f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T191841Z:cacd8623-098c-424e-8800-a7e3ecae7d5f" + ], + "Date": [ + "Mon, 17 Oct 2022 19:18:41 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/9e5513e3-cb01-4229-a663-dc7b9fab2a48?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzllNTUxM2UzLWNiMDEtNDIyOS1hNjYzLWRjN2I5ZmFiMmE0OD9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/9e5513e3-cb01-4229-a663-dc7b9fab2a48?api-version=2022-06-01" + ], + "x-ms-request-id": [ + "e7450ea6-f107-4fe2-a9b5-c14bd7017337" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11908" + ], + "x-ms-correlation-request-id": [ + "fe745175-4838-4be2-a4f8-820840d8f4a7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T191911Z:fe745175-4838-4be2-a4f8-820840d8f4a7" + ], + "Date": [ + "Mon, 17 Oct 2022 19:19:11 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/c004cb8e-25d9-4ae1-bc0a-18c63221072e?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2MwMDRjYjhlLTI1ZDktNGFlMS1iYzBhLTE4YzYzMjIxMDcyZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/9e5513e3-cb01-4229-a663-dc7b9fab2a48?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzllNTUxM2UzLWNiMDEtNDIyOS1hNjYzLWRjN2I5ZmFiMmE0OD9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:48:24 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/c004cb8e-25d9-4ae1-bc0a-18c63221072e?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/9e5513e3-cb01-4229-a663-dc7b9fab2a48?api-version=2022-06-01" + ], + "x-ms-request-id": [ + "f262227e-fd88-4500-83a3-0768df645972" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11907" + ], + "x-ms-correlation-request-id": [ + "73a138e2-97ba-4fc5-80d9-5340f319d563" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T191941Z:73a138e2-97ba-4fc5-80d9-5340f319d563" + ], + "Date": [ + "Mon, 17 Oct 2022 19:19:41 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/9e5513e3-cb01-4229-a663-dc7b9fab2a48?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzllNTUxM2UzLWNiMDEtNDIyOS1hNjYzLWRjN2I5ZmFiMmE0OD9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/9e5513e3-cb01-4229-a663-dc7b9fab2a48?api-version=2022-06-01" + ], "x-ms-request-id": [ - "c3456089-f741-4cf3-8e04-b113d66c9439" + "1fe84a81-2c28-4ddf-be4a-e569a97c836d" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5549,59 +6773,119 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11882" + "11906" ], "x-ms-correlation-request-id": [ - "bc1bc5a8-436f-4422-b31b-b10b9b082e1f" + "f71c9cb9-7e74-41e2-999c-7226fc51e0ea" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T124825Z:bc1bc5a8-436f-4422-b31b-b10b9b082e1f" + "WESTUS2:20221017T192011Z:f71c9cb9-7e74-41e2-999c-7226fc51e0ea" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 17 Oct 2022 19:20:10 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/c004cb8e-25d9-4ae1-bc0a-18c63221072e?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2MwMDRjYjhlLTI1ZDktNGFlMS1iYzBhLTE4YzYzMjIxMDcyZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/9e5513e3-cb01-4229-a663-dc7b9fab2a48?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzllNTUxM2UzLWNiMDEtNDIyOS1hNjYzLWRjN2I5ZmFiMmE0OD9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:48:55 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/c004cb8e-25d9-4ae1-bc0a-18c63221072e?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/9e5513e3-cb01-4229-a663-dc7b9fab2a48?api-version=2022-06-01" + ], + "x-ms-request-id": [ + "6440bcac-0b3b-45b5-af2a-c3e842716245" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11905" + ], + "x-ms-correlation-request-id": [ + "b0ec62f6-f429-4612-8b14-f19d5a50b6c0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T192041Z:b0ec62f6-f429-4612-8b14-f19d5a50b6c0" + ], + "Date": [ + "Mon, 17 Oct 2022 19:20:41 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/9e5513e3-cb01-4229-a663-dc7b9fab2a48?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzllNTUxM2UzLWNiMDEtNDIyOS1hNjYzLWRjN2I5ZmFiMmE0OD9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/9e5513e3-cb01-4229-a663-dc7b9fab2a48?api-version=2022-06-01" + ], "x-ms-request-id": [ - "f8f9becf-75c8-4989-9bb9-85b545cb3b5c" + "15d9ff4a-a870-4811-a5a4-c2217e579fc0" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5609,59 +6893,179 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11881" + "11904" ], "x-ms-correlation-request-id": [ - "d981bfc2-9204-45ee-a4cf-e1466f755f61" + "8b52db4b-fc96-40b0-ab08-88ba158c06f7" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T124855Z:d981bfc2-9204-45ee-a4cf-e1466f755f61" + "WESTUS2:20221017T192112Z:8b52db4b-fc96-40b0-ab08-88ba158c06f7" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 17 Oct 2022 19:21:11 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/c004cb8e-25d9-4ae1-bc0a-18c63221072e?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2MwMDRjYjhlLTI1ZDktNGFlMS1iYzBhLTE4YzYzMjIxMDcyZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/9e5513e3-cb01-4229-a663-dc7b9fab2a48?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzllNTUxM2UzLWNiMDEtNDIyOS1hNjYzLWRjN2I5ZmFiMmE0OD9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/9e5513e3-cb01-4229-a663-dc7b9fab2a48?api-version=2022-06-01" + ], + "x-ms-request-id": [ + "c45c5cb0-1ef4-4f08-b51a-c50fe5339465" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11903" + ], + "x-ms-correlation-request-id": [ + "f486d05d-6e96-4e21-a8de-df17060ad8ac" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T192142Z:f486d05d-6e96-4e21-a8de-df17060ad8ac" + ], "Date": [ - "Fri, 26 Nov 2021 12:49:26 GMT" + "Mon, 17 Oct 2022 19:21:41 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/9e5513e3-cb01-4229-a663-dc7b9fab2a48?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzllNTUxM2UzLWNiMDEtNDIyOS1hNjYzLWRjN2I5ZmFiMmE0OD9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/c004cb8e-25d9-4ae1-bc0a-18c63221072e?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/9e5513e3-cb01-4229-a663-dc7b9fab2a48?api-version=2022-06-01" + ], + "x-ms-request-id": [ + "72592a18-5133-46d1-ab2b-281315bd0e2c" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11902" + ], + "x-ms-correlation-request-id": [ + "1bc8095f-71aa-453a-b510-b9354339d8a5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T192212Z:1bc8095f-71aa-453a-b510-b9354339d8a5" + ], + "Date": [ + "Mon, 17 Oct 2022 19:22:11 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/9e5513e3-cb01-4229-a663-dc7b9fab2a48?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzllNTUxM2UzLWNiMDEtNDIyOS1hNjYzLWRjN2I5ZmFiMmE0OD9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/9e5513e3-cb01-4229-a663-dc7b9fab2a48?api-version=2022-06-01" + ], "x-ms-request-id": [ - "3a862266-bfda-4bd8-ac2f-3d880c55722a" + "a1a7b7c3-d1ea-46aa-a089-a4211ea33de1" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5670,58 +7074,112 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11880" + "11901" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "f77320f2-fcba-4cbe-a655-6a375a1373b6" + "dd5c3ad8-bf99-4a09-8fb1-0ae48b2d23e6" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T124926Z:f77320f2-fcba-4cbe-a655-6a375a1373b6" + "WESTUS2:20221017T192242Z:dd5c3ad8-bf99-4a09-8fb1-0ae48b2d23e6" + ], + "Date": [ + "Mon, 17 Oct 2022 19:22:41 GMT" + ], + "Expires": [ + "-1" ], "Content-Length": [ "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/9e5513e3-cb01-4229-a663-dc7b9fab2a48?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzllNTUxM2UzLWNiMDEtNDIyOS1hNjYzLWRjN2I5ZmFiMmE0OD9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b52bb101-1d9b-4c74-b3aa-a1bf0fe96855" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11900" + ], + "x-ms-correlation-request-id": [ + "e01f7670-684b-4f1d-96b6-9449b71dd518" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T192312Z:e01f7670-684b-4f1d-96b6-9449b71dd518" + ], + "Date": [ + "Mon, 17 Oct 2022 19:23:11 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/c004cb8e-25d9-4ae1-bc0a-18c63221072e?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2MwMDRjYjhlLTI1ZDktNGFlMS1iYzBhLTE4YzYzMjIxMDcyZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/9e5513e3-cb01-4229-a663-dc7b9fab2a48?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzllNTUxM2UzLWNiMDEtNDIyOS1hNjYzLWRjN2I5ZmFiMmE0OD9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:49:55 GMT" - ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/c004cb8e-25d9-4ae1-bc0a-18c63221072e?api-version=2021-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "305e1df5-6b59-4d94-b93d-ce6c7a41b00b" + "fcaf31ef-77c0-456e-bd11-2bb9645d04ca" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5729,56 +7187,65 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11879" + "11899" ], "x-ms-correlation-request-id": [ - "ad12e284-b58f-4b93-bb12-2e4b24c2e46b" + "d731a00f-ac6c-4ce2-8411-bc5cb6193355" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T124956Z:ad12e284-b58f-4b93-bb12-2e4b24c2e46b" + "WESTUS2:20221017T192312Z:d731a00f-ac6c-4ce2-8411-bc5cb6193355" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 17 Oct 2022 19:23:11 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/c004cb8e-25d9-4ae1-bc0a-18c63221072e?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2MwMDRjYjhlLTI1ZDktNGFlMS1iYzBhLTE4YzYzMjIxMDcyZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGeo3153/providers/Microsoft.Cache/redis/RedisGeo24400?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvMzE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjQ0MDA/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ed68e969-ec0d-43a8-a347-2ece298776e5" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:50:26 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Location": [ + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/1c60ea98-4d29-4da7-a69a-413aada8d3e9?api-version=2022-06-01" ], "x-ms-request-id": [ - "e0fd74b3-8a57-400c-96bc-434db4a44e4f" + "1c60ea98-4d29-4da7-a69a-413aada8d3e9" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5786,56 +7253,59 @@ "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11888" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14997" ], "x-ms-correlation-request-id": [ - "4daf7748-c651-49b5-832b-c0334e6a1b61" + "778a930d-7f70-4216-9d73-608c0751eb94" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T125027Z:4daf7748-c651-49b5-832b-c0334e6a1b61" + "WESTUS2:20221017T192313Z:778a930d-7f70-4216-9d73-608c0751eb94" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 17 Oct 2022 19:23:12 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/c004cb8e-25d9-4ae1-bc0a-18c63221072e?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2MwMDRjYjhlLTI1ZDktNGFlMS1iYzBhLTE4YzYzMjIxMDcyZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/1c60ea98-4d29-4da7-a69a-413aada8d3e9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzFjNjBlYTk4LTRkMjktNGRhNy1hNjlhLTQxM2FhZGE4ZDNlOT9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:50:27 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Location": [ + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/1c60ea98-4d29-4da7-a69a-413aada8d3e9?api-version=2022-06-01" ], "x-ms-request-id": [ - "7db1db73-a089-446c-837f-2ce52900f1a7" + "b03d1843-e9ec-4ac7-aed5-0291ef6c447c" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5843,65 +7313,59 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11887" + "11898" ], "x-ms-correlation-request-id": [ - "d7172118-f088-4f81-bed0-a60984511a12" + "812072fa-ff27-4d3c-bfd1-93be25ed64fa" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T125027Z:d7172118-f088-4f81-bed0-a60984511a12" + "WESTUS2:20221017T192343Z:812072fa-ff27-4d3c-bfd1-93be25ed64fa" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 17 Oct 2022 19:23:42 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4525/providers/Microsoft.Cache/redis/RedisGeo26194?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvNDUyNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzR2VvMjYxOTQ/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/1c60ea98-4d29-4da7-a69a-413aada8d3e9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzFjNjBlYTk4LTRkMjktNGRhNy1hNjlhLTQxM2FhZGE4ZDNlOT9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "9bc194f7-dd24-4ca7-b414-afa4e88302b0" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:50:27 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/East%20US/operationresults/49134726-6e3e-4d03-9b6c-f71fde169b84?api-version=2021-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/1c60ea98-4d29-4da7-a69a-413aada8d3e9?api-version=2022-06-01" ], "x-ms-request-id": [ - "49134726-6e3e-4d03-9b6c-f71fde169b84" + "17b41d9d-336d-460b-a5c5-df383d3f48a1" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5909,59 +7373,59 @@ "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14995" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11897" ], "x-ms-correlation-request-id": [ - "19c881f1-c906-4893-ab2f-4266705d9a95" + "c2d418b3-fc03-47e2-95e2-a4c1302677eb" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T125028Z:19c881f1-c906-4893-ab2f-4266705d9a95" + "WESTUS2:20221017T192413Z:c2d418b3-fc03-47e2-95e2-a4c1302677eb" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 17 Oct 2022 19:24:13 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/East%20US/operationresults/49134726-6e3e-4d03-9b6c-f71fde169b84?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzQ5MTM0NzI2LTZlM2UtNGQwMy05YjZjLWY3MWZkZTE2OWI4ND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/1c60ea98-4d29-4da7-a69a-413aada8d3e9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzFjNjBlYTk4LTRkMjktNGRhNy1hNjlhLTQxM2FhZGE4ZDNlOT9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:50:58 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/East%20US/operationresults/49134726-6e3e-4d03-9b6c-f71fde169b84?api-version=2021-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/1c60ea98-4d29-4da7-a69a-413aada8d3e9?api-version=2022-06-01" ], "x-ms-request-id": [ - "0d8c4b33-d4c3-4526-8e6f-d4ab38d1b455" + "570808ed-0fd2-4d36-a9a2-24957edef7fc" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5969,59 +7433,59 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11886" + "11896" ], "x-ms-correlation-request-id": [ - "279c6122-c651-4815-ba59-ac8768bde852" + "01858ab2-51aa-428a-b618-8fe9388917a3" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T125058Z:279c6122-c651-4815-ba59-ac8768bde852" + "WESTUS2:20221017T192443Z:01858ab2-51aa-428a-b618-8fe9388917a3" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 17 Oct 2022 19:24:43 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/East%20US/operationresults/49134726-6e3e-4d03-9b6c-f71fde169b84?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzQ5MTM0NzI2LTZlM2UtNGQwMy05YjZjLWY3MWZkZTE2OWI4ND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/1c60ea98-4d29-4da7-a69a-413aada8d3e9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzFjNjBlYTk4LTRkMjktNGRhNy1hNjlhLTQxM2FhZGE4ZDNlOT9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:51:28 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/East%20US/operationresults/49134726-6e3e-4d03-9b6c-f71fde169b84?api-version=2021-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/1c60ea98-4d29-4da7-a69a-413aada8d3e9?api-version=2022-06-01" ], "x-ms-request-id": [ - "b320281e-303c-498d-947c-950a502d040d" + "35d219b5-1f22-4044-877f-627c08aef356" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6029,59 +7493,59 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11885" + "11895" ], "x-ms-correlation-request-id": [ - "32daec17-38bd-40ed-9197-afd33b35ff60" + "7413f3b5-6708-4260-be64-a28b93c195b3" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T125128Z:32daec17-38bd-40ed-9197-afd33b35ff60" + "WESTUS2:20221017T192513Z:7413f3b5-6708-4260-be64-a28b93c195b3" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 17 Oct 2022 19:25:13 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/East%20US/operationresults/49134726-6e3e-4d03-9b6c-f71fde169b84?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzQ5MTM0NzI2LTZlM2UtNGQwMy05YjZjLWY3MWZkZTE2OWI4ND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/1c60ea98-4d29-4da7-a69a-413aada8d3e9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzFjNjBlYTk4LTRkMjktNGRhNy1hNjlhLTQxM2FhZGE4ZDNlOT9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:51:58 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/East%20US/operationresults/49134726-6e3e-4d03-9b6c-f71fde169b84?api-version=2021-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/1c60ea98-4d29-4da7-a69a-413aada8d3e9?api-version=2022-06-01" ], "x-ms-request-id": [ - "107ebb46-80f3-4898-8f0d-2c270781b368" + "3928b0d6-72b7-47ce-868a-c6ef04ae2450" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6089,59 +7553,59 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11884" + "11894" ], "x-ms-correlation-request-id": [ - "8d00a39d-7352-412e-acb0-87d1c8a31f8b" + "2fd6e94e-7d88-41f0-b4a1-81456573a60c" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T125158Z:8d00a39d-7352-412e-acb0-87d1c8a31f8b" + "WESTUS2:20221017T192544Z:2fd6e94e-7d88-41f0-b4a1-81456573a60c" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 17 Oct 2022 19:25:43 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/East%20US/operationresults/49134726-6e3e-4d03-9b6c-f71fde169b84?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzQ5MTM0NzI2LTZlM2UtNGQwMy05YjZjLWY3MWZkZTE2OWI4ND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/1c60ea98-4d29-4da7-a69a-413aada8d3e9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzFjNjBlYTk4LTRkMjktNGRhNy1hNjlhLTQxM2FhZGE4ZDNlOT9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:52:28 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/East%20US/operationresults/49134726-6e3e-4d03-9b6c-f71fde169b84?api-version=2021-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/1c60ea98-4d29-4da7-a69a-413aada8d3e9?api-version=2022-06-01" ], "x-ms-request-id": [ - "cc406d93-185c-4f42-87d6-6896b65f13ee" + "67f69a17-b3b4-4dc4-a1b9-e49fd988f8b0" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6149,59 +7613,59 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11883" + "11893" ], "x-ms-correlation-request-id": [ - "9192a53e-f00b-4c17-85bc-cc02b4429fac" + "85b6c6c9-91d3-4fdc-975e-80800b2e273e" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T125229Z:9192a53e-f00b-4c17-85bc-cc02b4429fac" + "WESTUS2:20221017T192614Z:85b6c6c9-91d3-4fdc-975e-80800b2e273e" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 17 Oct 2022 19:26:13 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/East%20US/operationresults/49134726-6e3e-4d03-9b6c-f71fde169b84?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzQ5MTM0NzI2LTZlM2UtNGQwMy05YjZjLWY3MWZkZTE2OWI4ND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/1c60ea98-4d29-4da7-a69a-413aada8d3e9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzFjNjBlYTk4LTRkMjktNGRhNy1hNjlhLTQxM2FhZGE4ZDNlOT9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:52:59 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/East%20US/operationresults/49134726-6e3e-4d03-9b6c-f71fde169b84?api-version=2021-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/1c60ea98-4d29-4da7-a69a-413aada8d3e9?api-version=2022-06-01" ], "x-ms-request-id": [ - "a12384bf-be74-4fe8-ac03-9d9f1c84c10d" + "2b0e79e1-f62f-4255-b3fa-3d8e8e2562a4" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6209,59 +7673,59 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11882" + "11892" ], "x-ms-correlation-request-id": [ - "b2c3b606-01f7-47e3-8f4e-5d7670b7421d" + "a6d27313-6c9a-4ace-8c24-2dc2c28e4935" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T125259Z:b2c3b606-01f7-47e3-8f4e-5d7670b7421d" + "WESTUS2:20221017T192644Z:a6d27313-6c9a-4ace-8c24-2dc2c28e4935" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 17 Oct 2022 19:26:43 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/East%20US/operationresults/49134726-6e3e-4d03-9b6c-f71fde169b84?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzQ5MTM0NzI2LTZlM2UtNGQwMy05YjZjLWY3MWZkZTE2OWI4ND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/1c60ea98-4d29-4da7-a69a-413aada8d3e9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzFjNjBlYTk4LTRkMjktNGRhNy1hNjlhLTQxM2FhZGE4ZDNlOT9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:53:29 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/East%20US/operationresults/49134726-6e3e-4d03-9b6c-f71fde169b84?api-version=2021-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/1c60ea98-4d29-4da7-a69a-413aada8d3e9?api-version=2022-06-01" ], "x-ms-request-id": [ - "8a8cb2f4-a1de-4066-82d1-21ef785b37ba" + "494d974d-3a65-4b46-b76d-b64a5b91845c" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6269,56 +7733,56 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11881" + "11891" ], "x-ms-correlation-request-id": [ - "e180dba9-1757-40b5-aeca-f524a37e61d3" + "0e92ed5f-3737-4d88-aa02-01e611fa3a74" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T125329Z:e180dba9-1757-40b5-aeca-f524a37e61d3" + "WESTUS2:20221017T192714Z:0e92ed5f-3737-4d88-aa02-01e611fa3a74" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 17 Oct 2022 19:27:14 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/East%20US/operationresults/49134726-6e3e-4d03-9b6c-f71fde169b84?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzQ5MTM0NzI2LTZlM2UtNGQwMy05YjZjLWY3MWZkZTE2OWI4ND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/1c60ea98-4d29-4da7-a69a-413aada8d3e9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzFjNjBlYTk4LTRkMjktNGRhNy1hNjlhLTQxM2FhZGE4ZDNlOT9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:53:59 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "8d14c9ec-acbf-4fc4-b1eb-1cbc7081ee75" + "705dda98-e619-495d-9ecd-07974d2ea85c" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6326,56 +7790,56 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11880" + "11890" ], "x-ms-correlation-request-id": [ - "77dc0760-a171-4399-a972-8f40c8ccbad4" + "9decdeeb-ef6d-48b0-9ddf-cace702acca5" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T125400Z:77dc0760-a171-4399-a972-8f40c8ccbad4" + "WESTUS2:20221017T192744Z:9decdeeb-ef6d-48b0-9ddf-cace702acca5" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 17 Oct 2022 19:27:43 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/East%20US/operationresults/49134726-6e3e-4d03-9b6c-f71fde169b84?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzQ5MTM0NzI2LTZlM2UtNGQwMy05YjZjLWY3MWZkZTE2OWI4ND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/East%20US/operationresults/1c60ea98-4d29-4da7-a69a-413aada8d3e9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzFjNjBlYTk4LTRkMjktNGRhNy1hNjlhLTQxM2FhZGE4ZDNlOT9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:53:59 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "f336cde5-802c-41f2-9ff8-e03085bedc5f" + "c35e1c66-5028-459e-9971-b01f76b430e4" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6383,41 +7847,47 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11879" + "11889" ], "x-ms-correlation-request-id": [ - "7c78a54b-d6a3-46d7-9a1c-4daa624ec82b" + "d6d352fd-b027-4083-9314-cbc66c5dc2e7" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T125400Z:7c78a54b-d6a3-46d7-9a1c-4daa624ec82b" + "WESTUS2:20221017T192744Z:d6d352fd-b027-4083-9314-cbc66c5dc2e7" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 17 Oct 2022 19:27:44 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/RedisGeo4525?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlZ3JvdXBzL1JlZGlzR2VvNDUyNT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/RedisGeo3153?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlZ3JvdXBzL1JlZGlzR2VvMzE1Mz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "838dde1d-163d-448a-8736-77eff42c7e67" + "b4997d69-7229-4485-bbd6-6a3432ecf006" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", + "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -6425,29 +7895,26 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:54:02 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0dFTzQ1MjUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2017-05-10" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0dFTzMxNTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14994" + "14999" ], "x-ms-request-id": [ - "f77aff04-13e5-4d62-ba14-eb42396a319d" + "7f365e49-4f9c-4e60-87f7-0ce01c367fe8" ], "x-ms-correlation-request-id": [ - "f77aff04-13e5-4d62-ba14-eb42396a319d" + "7f365e49-4f9c-4e60-87f7-0ce01c367fe8" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T125402Z:f77aff04-13e5-4d62-ba14-eb42396a319d" + "WESTUS2:20221017T192745Z:7f365e49-4f9c-4e60-87f7-0ce01c367fe8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6455,26 +7922,29 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 17 Oct 2022 19:27:44 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0dFTzQ1MjUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlVSSlUwZEZUelExTWpVdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0dFTzMxNTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlVSSlUwZEZUek14TlRNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", + "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -6482,29 +7952,26 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:54:17 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0dFTzQ1MjUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2017-05-10" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0dFTzMxNTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11878" + "11999" ], "x-ms-request-id": [ - "041d6204-ec15-4732-8f93-195e3441fb97" + "4b23ae84-8b88-496c-91f0-819340f4da02" ], "x-ms-correlation-request-id": [ - "041d6204-ec15-4732-8f93-195e3441fb97" + "4b23ae84-8b88-496c-91f0-819340f4da02" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T125418Z:041d6204-ec15-4732-8f93-195e3441fb97" + "WESTUS2:20221017T192800Z:4b23ae84-8b88-496c-91f0-819340f4da02" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6512,26 +7979,29 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 17 Oct 2022 19:27:59 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0dFTzQ1MjUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlVSSlUwZEZUelExTWpVdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0dFTzMxNTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlVSSlUwZEZUek14TlRNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", + "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -6539,29 +8009,26 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:54:32 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0dFTzQ1MjUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2017-05-10" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0dFTzMxNTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11877" + "11998" ], "x-ms-request-id": [ - "fc6a14e0-e54d-4e20-9bbf-b682129347d1" + "69216cd0-fdbf-4d4e-8846-eefbe858aaf3" ], "x-ms-correlation-request-id": [ - "fc6a14e0-e54d-4e20-9bbf-b682129347d1" + "69216cd0-fdbf-4d4e-8846-eefbe858aaf3" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T125433Z:fc6a14e0-e54d-4e20-9bbf-b682129347d1" + "WESTUS2:20221017T192815Z:69216cd0-fdbf-4d4e-8846-eefbe858aaf3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6569,26 +8036,29 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 17 Oct 2022 19:28:14 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0dFTzQ1MjUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlVSSlUwZEZUelExTWpVdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0dFTzMxNTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlVSSlUwZEZUek14TlRNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", + "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -6596,29 +8066,26 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:54:48 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0dFTzQ1MjUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2017-05-10" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0dFTzMxNTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11876" + "11997" ], "x-ms-request-id": [ - "9ad9edf7-bb39-4cc0-be60-e76be008933a" + "46b17955-0c0f-480a-bfab-99e3babc2cea" ], "x-ms-correlation-request-id": [ - "9ad9edf7-bb39-4cc0-be60-e76be008933a" + "46b17955-0c0f-480a-bfab-99e3babc2cea" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T125448Z:9ad9edf7-bb39-4cc0-be60-e76be008933a" + "WESTUS2:20221017T192830Z:46b17955-0c0f-480a-bfab-99e3babc2cea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6626,26 +8093,29 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 17 Oct 2022 19:28:30 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0dFTzQ1MjUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlVSSlUwZEZUelExTWpVdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0dFTzMxNTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlVSSlUwZEZUek14TlRNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", + "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -6653,29 +8123,26 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:55:04 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0dFTzQ1MjUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2017-05-10" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0dFTzMxNTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11875" + "11996" ], "x-ms-request-id": [ - "e7435e2c-8dc3-4e55-9b26-3f093e9dd98f" + "1cda994c-7327-4fc6-bf76-fab4fe952930" ], "x-ms-correlation-request-id": [ - "e7435e2c-8dc3-4e55-9b26-3f093e9dd98f" + "1cda994c-7327-4fc6-bf76-fab4fe952930" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T125504Z:e7435e2c-8dc3-4e55-9b26-3f093e9dd98f" + "WESTUS2:20221017T192846Z:1cda994c-7327-4fc6-bf76-fab4fe952930" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6683,26 +8150,29 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 17 Oct 2022 19:28:45 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0dFTzQ1MjUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlVSSlUwZEZUelExTWpVdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0dFTzMxNTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlVSSlUwZEZUek14TlRNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", + "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -6710,23 +8180,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:55:18 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11874" + "11995" ], "x-ms-request-id": [ - "923f3e6d-d490-46cd-9a16-9cb0c1da2e8d" + "cbf67a88-2b7b-4663-bb62-eb7ec4d7d50c" ], "x-ms-correlation-request-id": [ - "923f3e6d-d490-46cd-9a16-9cb0c1da2e8d" + "cbf67a88-2b7b-4663-bb62-eb7ec4d7d50c" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T125519Z:923f3e6d-d490-46cd-9a16-9cb0c1da2e8d" + "WESTUS2:20221017T192901Z:cbf67a88-2b7b-4663-bb62-eb7ec4d7d50c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6734,26 +8201,29 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 17 Oct 2022 19:29:01 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0dFTzQ1MjUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlVSSlUwZEZUelExTWpVdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0dFTzMxNTMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlVSSlUwZEZUek14TlRNdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", + "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -6761,23 +8231,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 12:55:18 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11873" + "11994" ], "x-ms-request-id": [ - "059455da-799e-4b75-9b0f-8723576acc2f" + "718db42d-ae20-4ce2-a98f-6d786e84db54" ], "x-ms-correlation-request-id": [ - "059455da-799e-4b75-9b0f-8723576acc2f" + "718db42d-ae20-4ce2-a98f-6d786e84db54" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T125519Z:059455da-799e-4b75-9b0f-8723576acc2f" + "WESTUS2:20221017T192901Z:718db42d-ae20-4ce2-a98f-6d786e84db54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6785,11 +8252,14 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 17 Oct 2022 19:29:01 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -6798,12 +8268,12 @@ ], "Names": { "GeoReplicationFunctionalTest": [ - "RedisGeo4525", - "RedisGeo11803", - "RedisGeo26194" + "RedisGeo3153", + "RedisGeo13589", + "RedisGeo24400" ] }, "Variables": { - "SubscriptionId": "0ee2a145-4d40-44f4-b764-67b40274f1ac" + "SubscriptionId": "3919658b-68ae-4509-8c17-6a2238340ae7" } } \ No newline at end of file diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/GetListKeysFunctionalTests/GetTest.json b/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/GetListKeysFunctionalTests/GetTest.json index 161e5d2bb146..d32364528762 100644 --- a/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/GetListKeysFunctionalTests/GetTest.json +++ b/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/GetListKeysFunctionalTests/GetTest.json @@ -1,42 +1,36 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGetList5682/providers/Microsoft.Cache/redis/RedisGetList3705?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU2ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3QzNzA1P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGetList8057/providers/Microsoft.Cache/redis/RedisGetList961?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDgwNTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3Q5NjE/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7ee8afc0-c480-4a9f-8d87-22980a9e6bf7" + "7037fb00-c811-4795-a47b-091232b95fca" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:37:17 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "06c6f314-b701-425f-a0c6-e6a637783d1e" + "7518eb98-3415-4780-af7d-0ceab6665048" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -44,17 +38,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11907" + "11999" ], "x-ms-correlation-request-id": [ - "d4ce9b9c-5595-4a0d-a1f9-38fbab0ea8e7" + "0e72326a-d73d-4756-b7c5-47cbbf6da1e4" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113717Z:d4ce9b9c-5595-4a0d-a1f9-38fbab0ea8e7" + "WESTUS2:20221017T194239Z:0e72326a-d73d-4756-b7c5-47cbbf6da1e4" + ], + "Date": [ + "Mon, 17 Oct 2022 19:42:39 GMT" ], "Content-Length": [ - "717" + "713" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,12 +63,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGetList5682/providers/Microsoft.Cache/Redis/RedisGetList3705\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGetList3705\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3705.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGetList8057/providers/Microsoft.Cache/Redis/RedisGetList961\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGetList961\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"30\",\r\n \"maxfragmentationmemory-reserved\": \"30\",\r\n \"maxmemory-delta\": \"30\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList961.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "0ee2a145-4d40-44f4-b764-67b40274f1ac" + "SubscriptionId": "3919658b-68ae-4509-8c17-6a2238340ae7" } } \ No newline at end of file diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/GetListKeysFunctionalTests/ListKeysTest.json b/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/GetListKeysFunctionalTests/ListKeysTest.json index 59ab6a33587f..7f2e00f9ad71 100644 --- a/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/GetListKeysFunctionalTests/ListKeysTest.json +++ b/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/GetListKeysFunctionalTests/ListKeysTest.json @@ -1,42 +1,36 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGetList5682/providers/Microsoft.Cache/redis/RedisGetList3705/listKeys?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU2ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3QzNzA1L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGetList8057/providers/Microsoft.Cache/redis/RedisGetList961/listKeys?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDgwNTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3Q5NjEvbGlzdEtleXM/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd04a56c-0aae-4de8-af0a-0ca7bd1dd780" + "4fe32949-9001-42cb-8503-2e6cc66e996d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:37:19 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "9d88c906-0975-4505-b8c6-4584a904fdec" + "39e59e5f-7f52-436f-bd9c-839df39bf969" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -44,14 +38,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-correlation-request-id": [ - "a505a2ab-74fb-4385-ba3c-f5cc8d9091e9" + "d75dbd95-ac50-4cca-a7f1-e0d0557f884b" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113720Z:a505a2ab-74fb-4385-ba3c-f5cc8d9091e9" + "WESTUS2:20221017T194240Z:d75dbd95-ac50-4cca-a7f1-e0d0557f884b" + ], + "Date": [ + "Mon, 17 Oct 2022 19:42:39 GMT" ], "Content-Length": [ "123" @@ -63,12 +63,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"*****\",\r\n \"secondaryKey\": \"******\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\"\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "0ee2a145-4d40-44f4-b764-67b40274f1ac" + "SubscriptionId": "3919658b-68ae-4509-8c17-6a2238340ae7" } } \ No newline at end of file diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/GetListKeysFunctionalTests/ListTest.json b/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/GetListKeysFunctionalTests/ListTest.json index 38ddadadb49d..e74c2186c425 100644 --- a/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/GetListKeysFunctionalTests/ListTest.json +++ b/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/GetListKeysFunctionalTests/ListTest.json @@ -1,42 +1,36 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGetList5682/providers/Microsoft.Cache/redis?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU2ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGetList8057/providers/Microsoft.Cache/redis?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDgwNTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcz9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "43c4ae9c-f0b2-4160-85d1-c9881024aae6" + "33945929-e779-4727-bc20-35f890ae7f1c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:37:22 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "5f15bf9c-f408-48e0-b78c-6ca3417403fe" + "7504a017-61bc-4e25-9449-3d12cf622b72" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -44,17 +38,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11997" ], "x-ms-correlation-request-id": [ - "12cd311f-9d1d-4afc-a2e0-7e62600b6979" + "9fe82f7f-10df-4209-9ae5-34ce75b2e84d" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113722Z:12cd311f-9d1d-4afc-a2e0-7e62600b6979" + "WESTUS2:20221017T194241Z:9fe82f7f-10df-4209-9ae5-34ce75b2e84d" + ], + "Date": [ + "Mon, 17 Oct 2022 19:42:40 GMT" ], "Content-Length": [ - "729" + "725" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,12 +63,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGetList5682/providers/Microsoft.Cache/Redis/RedisGetList3705\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGetList3705\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3705.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGetList8057/providers/Microsoft.Cache/Redis/RedisGetList961\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGetList961\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"30\",\r\n \"maxfragmentationmemory-reserved\": \"30\",\r\n \"maxmemory-delta\": \"30\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList961.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "0ee2a145-4d40-44f4-b764-67b40274f1ac" + "SubscriptionId": "3919658b-68ae-4509-8c17-6a2238340ae7" } } \ No newline at end of file diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/GetListKeysFunctionalTests/ListWithoutResourceGroupTest.json b/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/GetListKeysFunctionalTests/ListWithoutResourceGroupTest.json index fcbf24cc824c..8ecfe66e1d39 100644 --- a/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/GetListKeysFunctionalTests/ListWithoutResourceGroupTest.json +++ b/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/GetListKeysFunctionalTests/ListWithoutResourceGroupTest.json @@ -1,50 +1,36 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/redis?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/redis?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXM/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea7c14f7-c558-4ef2-9bdb-8e4cbea5a1d1" + "922167f0-fa10-4d86-81c1-1a52cf39b09a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:37:14 GMT" - ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ - "578e506f-3dac-4803-8b87-c53933082bbb", - "157ee1ce-259a-4098-be13-38ce0ec559eb", - "e588781e-3ee3-40e7-aea1-92a8252a8d7b" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11933" - ], "x-ms-request-id": [ - "6f74b72a-ff72-4036-b961-71fd2298d35a" + "00af6bca-93f6-4c45-9df7-88fc691e380c" ], - "x-ms-correlation-request-id": [ - "6f74b72a-ff72-4036-b961-71fd2298d35a" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113714Z:6f74b72a-ff72-4036-b961-71fd2298d35a" + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -52,8 +38,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "2d582474-14be-4b27-8ffa-97f42d75d6ed" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T194239Z:2d582474-14be-4b27-8ffa-97f42d75d6ed" + ], + "Date": [ + "Mon, 17 Oct 2022 19:42:39 GMT" + ], "Content-Length": [ - "8354" + "725" ], "Content-Type": [ "application/json; charset=utf-8" @@ -62,12 +63,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGetList5682/providers/Microsoft.Cache/Redis/RedisGetList3705\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGetList3705\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3705.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4764/providers/Microsoft.Cache/Redis/RedisGeo14984\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGeo14984\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Linking\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo14984.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4764/providers/Microsoft.Cache/Redis/RedisGeo14984/linkedServers/RedisGeo24695\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisCreateUpdate9078/providers/Microsoft.Cache/Redis/RedisCreateUpdate3895\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisCreateUpdate3895\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisCreateUpdate3895.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisReboot6439/providers/Microsoft.Cache/Redis/RedisReboot6083\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisReboot6083\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisReboot6083.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisSchedules5775/providers/Microsoft.Cache/Redis/RedisSchedules1781\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisSchedules1781\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisSchedules1781.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisFirewall1160/providers/Microsoft.Cache/Redis/RedisFirewall1103\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisFirewall1103\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisFirewall1103.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin7967/providers/Microsoft.Cache/Redis/RedisBegin6958\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin6958\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"shardId\": 0,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"shardId\": 0,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"210\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"210\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin6958.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4764/providers/Microsoft.Cache/Redis/RedisGeo24695\",\r\n \"location\": \"East US\",\r\n \"name\": \"RedisGeo24695\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo24695.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": [\r\n {\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGeo4764/providers/Microsoft.Cache/Redis/RedisGeo24695/linkedServers/RedisGeo14984\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisSchedules5204/providers/Microsoft.Cache/Redis/RedisSchedules4973\",\r\n \"location\": \"Central US EUAP\",\r\n \"name\": \"RedisSchedules4973\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisSchedules4973.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin7753/providers/Microsoft.Cache/Redis/RedisBegin2569\",\r\n \"location\": \"Central US EUAP\",\r\n \"name\": \"RedisBegin2569\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-reserved\": \"210\",\r\n \"maxclients\": \"7500\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"210\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin2569.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"replicasPerMaster\": 2,\r\n \"linkedServers\": [],\r\n \"replicasPerPrimary\": 2\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGetList8057/providers/Microsoft.Cache/Redis/RedisGetList961\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGetList961\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"30\",\r\n \"maxfragmentationmemory-reserved\": \"30\",\r\n \"maxmemory-delta\": \"30\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList961.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "0ee2a145-4d40-44f4-b764-67b40274f1ac" + "SubscriptionId": "3919658b-68ae-4509-8c17-6a2238340ae7" } } \ No newline at end of file diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/GetListKeysFunctionalTests/RegenerateKeyTest.json b/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/GetListKeysFunctionalTests/RegenerateKeyTest.json index bafe8b9ba547..970ebb84e1b5 100644 --- a/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/GetListKeysFunctionalTests/RegenerateKeyTest.json +++ b/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/GetListKeysFunctionalTests/RegenerateKeyTest.json @@ -1,42 +1,36 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGetList5682/providers/Microsoft.Cache/redis/RedisGetList3705/listKeys?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU2ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3QzNzA1L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGetList8057/providers/Microsoft.Cache/redis/RedisGetList961/listKeys?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDgwNTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3Q5NjEvbGlzdEtleXM/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da4dbe3a-6da2-4583-b033-225f14458960" + "66c2b439-754d-4b6f-b1cb-fe770d7be21a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:37:09 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "c918c330-1ed6-498f-ae72-b144100b249a" + "2f7f7587-d99a-489d-8221-1eb47f440bd0" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -44,14 +38,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "b78de4c1-f4e2-4271-8f79-859a58213d43" + "1f84f757-67e7-4f99-bb96-1643fcbd1e25" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113710Z:b78de4c1-f4e2-4271-8f79-859a58213d43" + "WESTUS2:20221017T194238Z:1f84f757-67e7-4f99-bb96-1643fcbd1e25" + ], + "Date": [ + "Mon, 17 Oct 2022 19:42:38 GMT" ], "Content-Length": [ "123" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"*****\",\r\n \"secondaryKey\": \"******\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"SanitizedPkey1\",\r\n \"secondaryKey\": \"SanitizedSkey\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGetList5682/providers/Microsoft.Cache/redis/RedisGetList3705/regenerateKey?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU2ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3QzNzA1L3JlZ2VuZXJhdGVLZXk/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGetList8057/providers/Microsoft.Cache/redis/RedisGetList961/regenerateKey?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDgwNTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3Q5NjEvcmVnZW5lcmF0ZUtleT9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "POST", "RequestBody": "{\r\n \"keyType\": \"Primary\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3fa5b687-c984-4c51-857b-267337296a48" + "eb7ceea1-e238-4bc3-aa8c-c3eb3b69c994" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -95,20 +95,14 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:37:10 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "a8f1f3e7-107f-42a1-8902-342fc652f76e" + "073cc6fd-9100-4bb9-bfc2-882fd25dc0a4" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -116,14 +110,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "fcb9455c-e5b5-4f1f-b48f-b17d813399f4" + "381f0da8-0b39-480f-bb74-2eb2fb8bb96a" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113711Z:fcb9455c-e5b5-4f1f-b48f-b17d813399f4" + "WESTUS2:20221017T194239Z:381f0da8-0b39-480f-bb74-2eb2fb8bb96a" + ], + "Date": [ + "Mon, 17 Oct 2022 19:42:39 GMT" ], "Content-Length": [ "123" @@ -135,12 +135,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"*******\",\r\n \"secondaryKey\": \"******\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"SanitizedPkey2\",\r\n \"secondaryKey\": \"SanitizedSkey\"\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "0ee2a145-4d40-44f4-b764-67b40274f1ac" + "SubscriptionId": "3919658b-68ae-4509-8c17-6a2238340ae7" } -} \ No newline at end of file +} diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/ManagedIdentityTests/ManagedIdentityCreateUpdateFunctionalTest.json b/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/ManagedIdentityTests/ManagedIdentityCreateUpdateFunctionalTest.json index 67f5020ab95d..a40fe7c606ae 100644 --- a/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/ManagedIdentityTests/ManagedIdentityCreateUpdateFunctionalTest.json +++ b/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/ManagedIdentityTests/ManagedIdentityCreateUpdateFunctionalTest.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/register?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/register?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "005b2469-8aeb-44b3-9438-b3103d333295" + "16e5e942-e142-4ed2-9a75-026b741f3be4" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", + "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -23,9 +23,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:09:44 GMT" - ], "Pragma": [ "no-cache" ], @@ -33,13 +30,13 @@ "1199" ], "x-ms-request-id": [ - "8b9b46ea-82ff-4b76-bff7-a34eabde59f7" + "60bb54e5-d6c5-4c7c-8acf-9609a436b044" ], "x-ms-correlation-request-id": [ - "8b9b46ea-82ff-4b76-bff7-a34eabde59f7" + "60bb54e5-d6c5-4c7c-8acf-9609a436b044" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T180944Z:8b9b46ea-82ff-4b76-bff7-a34eabde59f7" + "WESTUS2:20221017T175839Z:60bb54e5-d6c5-4c7c-8acf-9609a436b044" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,8 +44,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Mon, 17 Oct 2022 17:58:39 GMT" + ], "Content-Length": [ - "13832" + "14731" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,25 +57,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateLinkResources\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateLinkResources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise/databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/EventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"France South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Qatar Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateLinkResources\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateLinkResources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise/databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/EventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a71007d-a10e-4c4b-b9b3-01382f643f09" + "c43ca447-21b1-478b-aa48-64f15a5153b5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", + "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -83,23 +83,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:09:44 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11999" ], "x-ms-request-id": [ - "7dabdde7-dae0-486c-8f3d-910d746c58af" + "29e38df7-47a3-421d-b3d7-8844512c1e91" ], "x-ms-correlation-request-id": [ - "7dabdde7-dae0-486c-8f3d-910d746c58af" + "29e38df7-47a3-421d-b3d7-8844512c1e91" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T180945Z:7dabdde7-dae0-486c-8f3d-910d746c58af" + "WESTUS2:20221017T175839Z:29e38df7-47a3-421d-b3d7-8844512c1e91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -107,35 +104,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "13832" + "Date": [ + "Mon, 17 Oct 2022 17:58:39 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "14731" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateLinkResources\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateLinkResources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise/databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/EventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"France South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Qatar Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateLinkResources\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateLinkResources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise/databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/EventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/RedisBegin3906?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlZ3JvdXBzL1JlZGlzQmVnaW4zOTA2P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/RedisBegin5286?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlZ3JvdXBzL1JlZGlzQmVnaW41Mjg2P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fa026d80-3ee3-404a-b919-4c5d44aa5945" + "d32e56d0-44b0-437d-87a2-1b641ddc4c36" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", + "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ @@ -149,23 +149,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:09:45 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-request-id": [ - "9e0033e0-288b-474a-8a08-9f6656bb455e" + "847ef272-ebf2-4093-9980-e507074c6388" ], "x-ms-correlation-request-id": [ - "9e0033e0-288b-474a-8a08-9f6656bb455e" + "847ef272-ebf2-4093-9980-e507074c6388" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T180946Z:9e0033e0-288b-474a-8a08-9f6656bb455e" + "WESTUS2:20221017T175839Z:847ef272-ebf2-4093-9980-e507074c6388" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -173,6 +170,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Mon, 17 Oct 2022 17:58:39 GMT" + ], "Content-Length": [ "181" ], @@ -183,25 +183,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906\",\r\n \"name\": \"RedisBegin3906\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286\",\r\n \"name\": \"RedisBegin5286\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/RedisBegin3906?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlZ3JvdXBzL1JlZGlzQmVnaW4zOTA2P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/RedisBegin5286?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlZ3JvdXBzL1JlZGlzQmVnaW41Mjg2P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3840a3e6-6551-46d9-a5f8-f7b044b03dea" + "42f74c6c-cfe0-4f9c-bbb0-fd0231d30e13" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", + "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -209,23 +209,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:09:45 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11998" ], "x-ms-request-id": [ - "20b88e3f-fa9e-419d-84a5-a2b47911cb58" + "e790c4cd-38f5-4532-8ef2-9f99dc4e8469" ], "x-ms-correlation-request-id": [ - "20b88e3f-fa9e-419d-84a5-a2b47911cb58" + "e790c4cd-38f5-4532-8ef2-9f99dc4e8469" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T180946Z:20b88e3f-fa9e-419d-84a5-a2b47911cb58" + "WESTUS2:20221017T175839Z:e790c4cd-38f5-4532-8ef2-9f99dc4e8469" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -233,68 +230,65 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "181" + "Date": [ + "Mon, 17 Oct 2022 17:58:39 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "181" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906\",\r\n \"name\": \"RedisBegin3906\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286\",\r\n \"name\": \"RedisBegin5286\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/redis/RedisBegin304?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4zOTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjMwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/redis/RedisBegin2647?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41Mjg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjI2NDc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/prn-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test\": {}\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/tolani-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test-uami\": {}\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bb6a01cc-b7d5-4b36-bb60-8350b8708e44" + "8a29c540-4b42-49bd-9634-5d15781d4d53" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "403" + "411" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:09:52 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/redis/RedisBegin304?api-version=2021-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/redis/RedisBegin2647?api-version=2022-06-01" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/12d12420-08e0-4cd8-84a3-608a9dbbefcf?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/cc7fb77b-d260-4596-aa19-cb843d2fabde?api-version=2022-06-01" ], "x-ms-request-id": [ - "12d12420-08e0-4cd8-84a3-608a9dbbefcf" + "cc7fb77b-d260-4596-aa19-cb843d2fabde" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -302,17 +296,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "22632431-d43f-4c37-a126-b9361f091785" + "80bf03a8-6253-412b-b993-581a3a7e8615" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T180952Z:22632431-d43f-4c37-a126-b9361f091785" + "WESTUS2:20221017T175842Z:80bf03a8-6253-412b-b993-581a3a7e8615" + ], + "Date": [ + "Mon, 17 Oct 2022 17:58:42 GMT" ], "Content-Length": [ - "1718" + "1726" ], "Content-Type": [ "application/json; charset=utf-8" @@ -321,46 +321,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/Redis/RedisBegin304\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin304\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"*****\",\r\n \"secondaryKey\": \"******\"\r\n },\r\n \"hostName\": \"RedisBegin304.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"7ded3234-d168-4403-a305-0055e5b4f740\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/prn-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test\": {\r\n \"principalId\": \"8834a85a-e764-4150-bec5-60ae558026be\",\r\n \"clientId\": \"361b0f99-cdac-4d41-9b5f-7ac5715f4830\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/Redis/RedisBegin2647\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin2647\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\"\r\n },\r\n \"hostName\": \"RedisBegin2647.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"e954a686-45b4-4962-9f84-c63346e40c3f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/tolani-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test-uami\": {\r\n \"principalId\": \"1588532d-e046-4901-8b35-2d071681f000\",\r\n \"clientId\": \"78058a3e-8861-46fe-89e3-9387eca26d6a\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/redis/RedisBegin304?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4zOTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjMwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/redis/RedisBegin2647?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41Mjg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjI2NDc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "66230b9b-7c38-4f90-bd14-ea5338953e2c" + "96086b15-1581-4821-8510-ec59ee4a90ec" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:09:53 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "49bcd9c6-e7d6-4731-aa8f-c5aa03caae21" + "ef07d8e9-47fc-470d-a080-2351bd36fffa" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -368,17 +362,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "ef46f50c-e9a5-412f-80a6-a05dd3f823a8" + "4890d2b2-2e9a-433e-a020-c48004a062bf" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T180953Z:ef46f50c-e9a5-412f-80a6-a05dd3f823a8" + "WESTUS2:20221017T175842Z:4890d2b2-2e9a-433e-a020-c48004a062bf" + ], + "Date": [ + "Mon, 17 Oct 2022 17:58:42 GMT" ], "Content-Length": [ - "1194" + "1202" ], "Content-Type": [ "application/json; charset=utf-8" @@ -387,46 +387,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/Redis/RedisBegin304\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin304\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin304.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"7ded3234-d168-4403-a305-0055e5b4f740\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/prn-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test\": {\r\n \"principalId\": \"8834a85a-e764-4150-bec5-60ae558026be\",\r\n \"clientId\": \"361b0f99-cdac-4d41-9b5f-7ac5715f4830\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/Redis/RedisBegin2647\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin2647\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin2647.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"e954a686-45b4-4962-9f84-c63346e40c3f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/tolani-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test-uami\": {\r\n \"principalId\": \"1588532d-e046-4901-8b35-2d071681f000\",\r\n \"clientId\": \"78058a3e-8861-46fe-89e3-9387eca26d6a\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/redis/RedisBegin304?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4zOTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjMwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/redis/RedisBegin2647?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41Mjg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjI2NDc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9606c247-4892-4890-8293-6408ca4c1fb7" + "21402a3e-4e70-4abf-95b8-5e6409e87fe5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:10:23 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "7123c97d-3562-498a-8647-759eaf4f1501" + "e037e8a7-bf35-4b14-aead-00f98631f6f2" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -434,17 +428,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "37107f25-2079-46d7-962f-abb4b916807b" + "a88bb980-9fb6-49d1-9865-9a57748352f9" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T181023Z:37107f25-2079-46d7-962f-abb4b916807b" + "WESTUS2:20221017T175913Z:a88bb980-9fb6-49d1-9865-9a57748352f9" + ], + "Date": [ + "Mon, 17 Oct 2022 17:59:12 GMT" ], "Content-Length": [ - "1194" + "1202" ], "Content-Type": [ "application/json; charset=utf-8" @@ -453,46 +453,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/Redis/RedisBegin304\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin304\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin304.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"7ded3234-d168-4403-a305-0055e5b4f740\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/prn-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test\": {\r\n \"principalId\": \"8834a85a-e764-4150-bec5-60ae558026be\",\r\n \"clientId\": \"361b0f99-cdac-4d41-9b5f-7ac5715f4830\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/Redis/RedisBegin2647\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin2647\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin2647.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"e954a686-45b4-4962-9f84-c63346e40c3f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/tolani-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test-uami\": {\r\n \"principalId\": \"1588532d-e046-4901-8b35-2d071681f000\",\r\n \"clientId\": \"78058a3e-8861-46fe-89e3-9387eca26d6a\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/redis/RedisBegin304?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4zOTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjMwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/redis/RedisBegin2647?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41Mjg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjI2NDc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "416b7e78-10fe-4161-9dce-f26d6fe23070" + "79eb3644-c10a-4c25-9762-7e378ee180eb" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:10:53 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "471e229c-cb8c-4c00-8437-42986b7d8788" + "af8dac7e-4a2d-4cfb-9f0e-14141bff26cd" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -500,17 +494,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "c19cb724-a563-4f5f-87cb-54928f95818a" + "3f233243-8e6d-447c-8938-72a8176f12a8" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T181054Z:c19cb724-a563-4f5f-87cb-54928f95818a" + "WESTUS2:20221017T175943Z:3f233243-8e6d-447c-8938-72a8176f12a8" + ], + "Date": [ + "Mon, 17 Oct 2022 17:59:42 GMT" ], "Content-Length": [ - "1194" + "1202" ], "Content-Type": [ "application/json; charset=utf-8" @@ -519,46 +519,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/Redis/RedisBegin304\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin304\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin304.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"7ded3234-d168-4403-a305-0055e5b4f740\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/prn-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test\": {\r\n \"principalId\": \"8834a85a-e764-4150-bec5-60ae558026be\",\r\n \"clientId\": \"361b0f99-cdac-4d41-9b5f-7ac5715f4830\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/Redis/RedisBegin2647\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin2647\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin2647.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"e954a686-45b4-4962-9f84-c63346e40c3f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/tolani-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test-uami\": {\r\n \"principalId\": \"1588532d-e046-4901-8b35-2d071681f000\",\r\n \"clientId\": \"78058a3e-8861-46fe-89e3-9387eca26d6a\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/redis/RedisBegin304?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4zOTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjMwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/redis/RedisBegin2647?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41Mjg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjI2NDc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "37b2be6e-d0bc-4635-8557-5fe121c5c5fe" + "5bca489d-c6e8-4d14-9f9a-399886686e79" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:11:24 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "f093d353-3258-4ef4-8392-b99d6e99ddf3" + "bb0b5587-ae26-452f-afb6-b560f79e1ef8" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -566,17 +560,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "b2743218-980b-4b35-8890-c27dbad53882" + "09d77e99-4813-45e0-9553-5f0409b698ec" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T181124Z:b2743218-980b-4b35-8890-c27dbad53882" + "WESTUS2:20221017T180013Z:09d77e99-4813-45e0-9553-5f0409b698ec" + ], + "Date": [ + "Mon, 17 Oct 2022 18:00:12 GMT" ], "Content-Length": [ - "1194" + "1202" ], "Content-Type": [ "application/json; charset=utf-8" @@ -585,46 +585,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/Redis/RedisBegin304\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin304\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin304.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"7ded3234-d168-4403-a305-0055e5b4f740\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/prn-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test\": {\r\n \"principalId\": \"8834a85a-e764-4150-bec5-60ae558026be\",\r\n \"clientId\": \"361b0f99-cdac-4d41-9b5f-7ac5715f4830\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/Redis/RedisBegin2647\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin2647\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin2647.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"e954a686-45b4-4962-9f84-c63346e40c3f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/tolani-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test-uami\": {\r\n \"principalId\": \"1588532d-e046-4901-8b35-2d071681f000\",\r\n \"clientId\": \"78058a3e-8861-46fe-89e3-9387eca26d6a\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/redis/RedisBegin304?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4zOTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjMwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/redis/RedisBegin2647?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41Mjg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjI2NDc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1405804e-73cf-4fc0-b054-9561e4cf7fe0" + "6bab30e1-e383-42d9-89ef-e3362631903d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:11:54 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "5f79d7e9-1aa8-47fc-84e0-1a5280e9ab20" + "cf8c786e-f4b5-4e1e-aa1c-bff93accba97" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -632,17 +626,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "1726fea6-0177-4a2b-9bd6-32f8e3824d8e" + "d5aef77a-a048-4521-a04b-d920ab4e03af" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T181154Z:1726fea6-0177-4a2b-9bd6-32f8e3824d8e" + "WESTUS2:20221017T180043Z:d5aef77a-a048-4521-a04b-d920ab4e03af" + ], + "Date": [ + "Mon, 17 Oct 2022 18:00:42 GMT" ], "Content-Length": [ - "1194" + "1202" ], "Content-Type": [ "application/json; charset=utf-8" @@ -651,46 +651,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/Redis/RedisBegin304\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin304\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin304.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"7ded3234-d168-4403-a305-0055e5b4f740\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/prn-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test\": {\r\n \"principalId\": \"8834a85a-e764-4150-bec5-60ae558026be\",\r\n \"clientId\": \"361b0f99-cdac-4d41-9b5f-7ac5715f4830\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/Redis/RedisBegin2647\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin2647\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin2647.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"e954a686-45b4-4962-9f84-c63346e40c3f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/tolani-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test-uami\": {\r\n \"principalId\": \"1588532d-e046-4901-8b35-2d071681f000\",\r\n \"clientId\": \"78058a3e-8861-46fe-89e3-9387eca26d6a\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/redis/RedisBegin304?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4zOTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjMwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/redis/RedisBegin2647?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41Mjg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjI2NDc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "78cc5370-f5e7-42a0-a4e9-d4c0347b42d3" + "3922db1a-3dca-49f7-afe3-d63468030931" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:12:24 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "c9bb3944-a56e-417b-8c78-582d4562a523" + "30a7ef3c-c5ae-44b5-b8af-da7a1c9ee8c4" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -698,17 +692,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-correlation-request-id": [ - "63767091-95c1-4066-9061-39a840243b02" + "aed68184-d85e-459f-b992-1d3e7bbf53bf" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T181225Z:63767091-95c1-4066-9061-39a840243b02" + "WESTUS2:20221017T180113Z:aed68184-d85e-459f-b992-1d3e7bbf53bf" + ], + "Date": [ + "Mon, 17 Oct 2022 18:01:12 GMT" ], "Content-Length": [ - "1194" + "1202" ], "Content-Type": [ "application/json; charset=utf-8" @@ -717,46 +717,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/Redis/RedisBegin304\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin304\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin304.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"7ded3234-d168-4403-a305-0055e5b4f740\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/prn-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test\": {\r\n \"principalId\": \"8834a85a-e764-4150-bec5-60ae558026be\",\r\n \"clientId\": \"361b0f99-cdac-4d41-9b5f-7ac5715f4830\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/Redis/RedisBegin2647\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin2647\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin2647.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"e954a686-45b4-4962-9f84-c63346e40c3f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/tolani-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test-uami\": {\r\n \"principalId\": \"1588532d-e046-4901-8b35-2d071681f000\",\r\n \"clientId\": \"78058a3e-8861-46fe-89e3-9387eca26d6a\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/redis/RedisBegin304?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4zOTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjMwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/redis/RedisBegin2647?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41Mjg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjI2NDc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1cffe5c4-c272-402e-a286-83825522bc2f" + "6cebb647-f5fe-4b3a-8d49-c07cdb04ca51" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:12:54 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "06df161b-b089-4afe-bbb6-b3c96f1f1826" + "aea6d666-d2b7-4924-b6d2-fbb18a2ec923" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -764,17 +758,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-correlation-request-id": [ - "f10b7396-8bb4-4d9c-a30f-6f98666601e1" + "38346ea6-427a-4d78-8573-5fe3ae9a8137" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T181255Z:f10b7396-8bb4-4d9c-a30f-6f98666601e1" + "WESTUS2:20221017T180143Z:38346ea6-427a-4d78-8573-5fe3ae9a8137" + ], + "Date": [ + "Mon, 17 Oct 2022 18:01:43 GMT" ], "Content-Length": [ - "1194" + "1202" ], "Content-Type": [ "application/json; charset=utf-8" @@ -783,46 +783,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/Redis/RedisBegin304\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin304\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin304.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"7ded3234-d168-4403-a305-0055e5b4f740\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/prn-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test\": {\r\n \"principalId\": \"8834a85a-e764-4150-bec5-60ae558026be\",\r\n \"clientId\": \"361b0f99-cdac-4d41-9b5f-7ac5715f4830\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/Redis/RedisBegin2647\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin2647\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin2647.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"e954a686-45b4-4962-9f84-c63346e40c3f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/tolani-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test-uami\": {\r\n \"principalId\": \"1588532d-e046-4901-8b35-2d071681f000\",\r\n \"clientId\": \"78058a3e-8861-46fe-89e3-9387eca26d6a\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/redis/RedisBegin304?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4zOTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjMwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/redis/RedisBegin2647?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41Mjg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjI2NDc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2e7d1030-64f3-41f8-a62c-5df9b8ae420c" + "c2ecd6e3-7c00-4989-9b08-4f97d7c38b3a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:13:25 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "faba647e-610e-4f43-80f3-6ba16f89c18b" + "eebb485a-89a7-4612-9459-417f10ca7a6b" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -830,17 +824,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], "x-ms-correlation-request-id": [ - "1ca23534-e1ec-4342-adb5-4bb00157e207" + "03210216-ce66-482c-b7cc-7ffd412c1233" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T181325Z:1ca23534-e1ec-4342-adb5-4bb00157e207" + "WESTUS2:20221017T180213Z:03210216-ce66-482c-b7cc-7ffd412c1233" + ], + "Date": [ + "Mon, 17 Oct 2022 18:02:13 GMT" ], "Content-Length": [ - "1194" + "1202" ], "Content-Type": [ "application/json; charset=utf-8" @@ -849,46 +849,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/Redis/RedisBegin304\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin304\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin304.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"7ded3234-d168-4403-a305-0055e5b4f740\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/prn-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test\": {\r\n \"principalId\": \"8834a85a-e764-4150-bec5-60ae558026be\",\r\n \"clientId\": \"361b0f99-cdac-4d41-9b5f-7ac5715f4830\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/Redis/RedisBegin2647\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin2647\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin2647.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"e954a686-45b4-4962-9f84-c63346e40c3f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/tolani-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test-uami\": {\r\n \"principalId\": \"1588532d-e046-4901-8b35-2d071681f000\",\r\n \"clientId\": \"78058a3e-8861-46fe-89e3-9387eca26d6a\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/redis/RedisBegin304?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4zOTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjMwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/redis/RedisBegin2647?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41Mjg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjI2NDc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "446b9033-43dc-4d05-8973-3d4b64244d85" + "3acd920c-7805-41ce-8143-cf1d7a50be6e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:13:56 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "40beb556-b37a-4bea-bbbc-421e0ee779d5" + "9e78354c-483a-46f4-b6cb-6f0af975826b" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -896,17 +890,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], "x-ms-correlation-request-id": [ - "9bb49938-03b1-4f58-b165-d4ddbd7725fd" + "f97f3ffd-a233-458b-8610-27bea2520074" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T181356Z:9bb49938-03b1-4f58-b165-d4ddbd7725fd" + "WESTUS2:20221017T180244Z:f97f3ffd-a233-458b-8610-27bea2520074" + ], + "Date": [ + "Mon, 17 Oct 2022 18:02:43 GMT" ], "Content-Length": [ - "1194" + "1202" ], "Content-Type": [ "application/json; charset=utf-8" @@ -915,46 +915,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/Redis/RedisBegin304\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin304\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin304.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"7ded3234-d168-4403-a305-0055e5b4f740\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/prn-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test\": {\r\n \"principalId\": \"8834a85a-e764-4150-bec5-60ae558026be\",\r\n \"clientId\": \"361b0f99-cdac-4d41-9b5f-7ac5715f4830\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/Redis/RedisBegin2647\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin2647\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin2647.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"e954a686-45b4-4962-9f84-c63346e40c3f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/tolani-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test-uami\": {\r\n \"principalId\": \"1588532d-e046-4901-8b35-2d071681f000\",\r\n \"clientId\": \"78058a3e-8861-46fe-89e3-9387eca26d6a\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/redis/RedisBegin304?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4zOTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjMwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/redis/RedisBegin2647?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41Mjg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjI2NDc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9cef1840-ce55-460f-835a-eb534e7730eb" + "ca290433-4d62-43ee-a0e0-bd30ec715dcc" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:14:26 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "80f8eee7-d4ac-40c7-9105-bc41e9b56ac3" + "c61138a9-310f-4ddf-9d64-b581a406f940" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -962,17 +956,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], "x-ms-correlation-request-id": [ - "f5097d8f-25f4-4335-ac7a-ce6f6ae15c21" + "3924dda8-2026-4335-9eb9-3884dbc318e6" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T181426Z:f5097d8f-25f4-4335-ac7a-ce6f6ae15c21" + "WESTUS2:20221017T180314Z:3924dda8-2026-4335-9eb9-3884dbc318e6" + ], + "Date": [ + "Mon, 17 Oct 2022 18:03:13 GMT" ], "Content-Length": [ - "1194" + "1202" ], "Content-Type": [ "application/json; charset=utf-8" @@ -981,46 +981,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/Redis/RedisBegin304\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin304\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin304.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"7ded3234-d168-4403-a305-0055e5b4f740\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/prn-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test\": {\r\n \"principalId\": \"8834a85a-e764-4150-bec5-60ae558026be\",\r\n \"clientId\": \"361b0f99-cdac-4d41-9b5f-7ac5715f4830\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/Redis/RedisBegin2647\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin2647\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin2647.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"e954a686-45b4-4962-9f84-c63346e40c3f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/tolani-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test-uami\": {\r\n \"principalId\": \"1588532d-e046-4901-8b35-2d071681f000\",\r\n \"clientId\": \"78058a3e-8861-46fe-89e3-9387eca26d6a\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/redis/RedisBegin304?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4zOTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjMwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/redis/RedisBegin2647?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41Mjg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjI2NDc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57122f27-7b95-459f-b327-86e4ad5031c4" + "4dbe0233-3ae0-4982-9a8c-282396c73953" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:14:56 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "23649f0f-ea1c-4ea0-ac3a-e1465f97f2d0" + "0c57707a-d44f-4bbd-8b3d-70cb4892accf" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1028,17 +1022,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], "x-ms-correlation-request-id": [ - "5a2cccb0-aa9d-4ded-b421-a40f97cbfec1" + "192a4d64-b600-4424-bcdf-fae5e75c6a27" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T181457Z:5a2cccb0-aa9d-4ded-b421-a40f97cbfec1" + "WESTUS2:20221017T180344Z:192a4d64-b600-4424-bcdf-fae5e75c6a27" + ], + "Date": [ + "Mon, 17 Oct 2022 18:03:43 GMT" ], "Content-Length": [ - "1194" + "1202" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1047,46 +1047,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/Redis/RedisBegin304\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin304\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin304.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"7ded3234-d168-4403-a305-0055e5b4f740\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/prn-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test\": {\r\n \"principalId\": \"8834a85a-e764-4150-bec5-60ae558026be\",\r\n \"clientId\": \"361b0f99-cdac-4d41-9b5f-7ac5715f4830\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/Redis/RedisBegin2647\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin2647\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin2647.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"e954a686-45b4-4962-9f84-c63346e40c3f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/tolani-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test-uami\": {\r\n \"principalId\": \"1588532d-e046-4901-8b35-2d071681f000\",\r\n \"clientId\": \"78058a3e-8861-46fe-89e3-9387eca26d6a\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/redis/RedisBegin304?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4zOTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjMwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/redis/RedisBegin2647?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41Mjg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjI2NDc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dac39362-f633-40ad-87f6-cd6837117ca7" + "c56b75b8-66f8-424a-adc8-bd32f9b62081" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:15:26 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "7d2118be-b32d-4eeb-bfae-6f0fcc1110b1" + "f3c4e94a-d2bc-4372-8880-fcf8a52e7ccb" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1094,17 +1088,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], "x-ms-correlation-request-id": [ - "ce23e780-c013-492a-8777-928eda9ab6db" + "c135de81-a43e-4f11-8c27-e14b99f7f90b" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T181527Z:ce23e780-c013-492a-8777-928eda9ab6db" + "WESTUS2:20221017T180414Z:c135de81-a43e-4f11-8c27-e14b99f7f90b" + ], + "Date": [ + "Mon, 17 Oct 2022 18:04:13 GMT" ], "Content-Length": [ - "1194" + "1202" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1113,46 +1113,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/Redis/RedisBegin304\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin304\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin304.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"7ded3234-d168-4403-a305-0055e5b4f740\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/prn-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test\": {\r\n \"principalId\": \"8834a85a-e764-4150-bec5-60ae558026be\",\r\n \"clientId\": \"361b0f99-cdac-4d41-9b5f-7ac5715f4830\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/Redis/RedisBegin2647\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin2647\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin2647.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"e954a686-45b4-4962-9f84-c63346e40c3f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/tolani-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test-uami\": {\r\n \"principalId\": \"1588532d-e046-4901-8b35-2d071681f000\",\r\n \"clientId\": \"78058a3e-8861-46fe-89e3-9387eca26d6a\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/redis/RedisBegin304?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4zOTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjMwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/redis/RedisBegin2647?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41Mjg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjI2NDc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b1cdae1f-2abb-46e3-bcd3-be4cc45db983" + "4427df66-6710-4693-8bf4-023f4c2e3666" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:15:57 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "f96669d7-27eb-484a-9638-d5f7cc58251a" + "fc1baf1d-57e5-4da9-8221-20786dae7ef3" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1160,17 +1154,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], "x-ms-correlation-request-id": [ - "62cd88c0-3303-44a7-a647-b699387e34ed" + "593c8fb5-5173-4050-abe0-639ad544e8b1" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T181558Z:62cd88c0-3303-44a7-a647-b699387e34ed" + "WESTUS2:20221017T180444Z:593c8fb5-5173-4050-abe0-639ad544e8b1" + ], + "Date": [ + "Mon, 17 Oct 2022 18:04:43 GMT" ], "Content-Length": [ - "1194" + "1202" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1179,46 +1179,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/Redis/RedisBegin304\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin304\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin304.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"7ded3234-d168-4403-a305-0055e5b4f740\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/prn-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test\": {\r\n \"principalId\": \"8834a85a-e764-4150-bec5-60ae558026be\",\r\n \"clientId\": \"361b0f99-cdac-4d41-9b5f-7ac5715f4830\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/Redis/RedisBegin2647\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin2647\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin2647.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"e954a686-45b4-4962-9f84-c63346e40c3f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/tolani-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test-uami\": {\r\n \"principalId\": \"1588532d-e046-4901-8b35-2d071681f000\",\r\n \"clientId\": \"78058a3e-8861-46fe-89e3-9387eca26d6a\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/redis/RedisBegin304?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4zOTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjMwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/redis/RedisBegin2647?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41Mjg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjI2NDc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1db67615-77f7-408b-9e96-67bc5fdcda64" + "b68c10f9-deeb-4635-9c2c-d517a4b8cfa0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:16:28 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "35855d34-542b-4859-95ee-fc217248f3c5" + "de93a391-0ab2-45bc-820f-919d5be97b66" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1226,17 +1220,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], "x-ms-correlation-request-id": [ - "6c3fa175-7e17-4213-890e-4c9a450d7314" + "f6701d4a-f68f-4681-859c-8fc3c702e80b" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T181628Z:6c3fa175-7e17-4213-890e-4c9a450d7314" + "WESTUS2:20221017T180515Z:f6701d4a-f68f-4681-859c-8fc3c702e80b" + ], + "Date": [ + "Mon, 17 Oct 2022 18:05:15 GMT" ], "Content-Length": [ - "1194" + "1202" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1245,46 +1245,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/Redis/RedisBegin304\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin304\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin304.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"7ded3234-d168-4403-a305-0055e5b4f740\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/prn-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test\": {\r\n \"principalId\": \"8834a85a-e764-4150-bec5-60ae558026be\",\r\n \"clientId\": \"361b0f99-cdac-4d41-9b5f-7ac5715f4830\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/Redis/RedisBegin2647\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin2647\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin2647.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"e954a686-45b4-4962-9f84-c63346e40c3f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/tolani-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test-uami\": {\r\n \"principalId\": \"1588532d-e046-4901-8b35-2d071681f000\",\r\n \"clientId\": \"78058a3e-8861-46fe-89e3-9387eca26d6a\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/redis/RedisBegin304?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4zOTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjMwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/redis/RedisBegin2647?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41Mjg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjI2NDc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd42b771-243c-49b2-96bd-b19323842ed4" + "31c1f6c5-5b7c-4f81-9660-97579d48d9f5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:16:58 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "a8446944-09fd-4711-bbda-136cd0c98e77" + "9841d4e1-c667-494f-8d73-6d9aef09b3f4" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1292,17 +1286,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11985" ], "x-ms-correlation-request-id": [ - "048dc8fe-644a-45a4-a1a3-b9b1d8aef493" + "3404d8d8-ae71-4561-aa83-0c38b0ee2cef" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T181659Z:048dc8fe-644a-45a4-a1a3-b9b1d8aef493" + "WESTUS2:20221017T180545Z:3404d8d8-ae71-4561-aa83-0c38b0ee2cef" + ], + "Date": [ + "Mon, 17 Oct 2022 18:05:45 GMT" ], "Content-Length": [ - "1194" + "1202" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1311,46 +1311,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/Redis/RedisBegin304\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin304\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin304.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"7ded3234-d168-4403-a305-0055e5b4f740\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/prn-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test\": {\r\n \"principalId\": \"8834a85a-e764-4150-bec5-60ae558026be\",\r\n \"clientId\": \"361b0f99-cdac-4d41-9b5f-7ac5715f4830\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/Redis/RedisBegin2647\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin2647\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin2647.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"e954a686-45b4-4962-9f84-c63346e40c3f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/tolani-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test-uami\": {\r\n \"principalId\": \"1588532d-e046-4901-8b35-2d071681f000\",\r\n \"clientId\": \"78058a3e-8861-46fe-89e3-9387eca26d6a\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/redis/RedisBegin304?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4zOTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjMwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/redis/RedisBegin2647?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41Mjg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjI2NDc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "43326480-c259-424b-97a5-df79cdc225e3" + "35939475-9657-4d5b-b59e-eec5fdac046c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:17:29 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "8e2fd009-5c14-4b43-a3de-717bb756a52f" + "0b81bc64-4a47-4688-bad9-2b26121a1a5d" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1358,17 +1352,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11984" ], "x-ms-correlation-request-id": [ - "4760852d-71a4-4942-9c7c-2abcf72c8b1c" + "98a1a877-2031-4a74-a124-254bb9d3069f" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T181729Z:4760852d-71a4-4942-9c7c-2abcf72c8b1c" + "WESTUS2:20221017T180616Z:98a1a877-2031-4a74-a124-254bb9d3069f" + ], + "Date": [ + "Mon, 17 Oct 2022 18:06:15 GMT" ], "Content-Length": [ - "1194" + "1202" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1377,46 +1377,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/Redis/RedisBegin304\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin304\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin304.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"7ded3234-d168-4403-a305-0055e5b4f740\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/prn-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test\": {\r\n \"principalId\": \"8834a85a-e764-4150-bec5-60ae558026be\",\r\n \"clientId\": \"361b0f99-cdac-4d41-9b5f-7ac5715f4830\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/Redis/RedisBegin2647\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin2647\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin2647.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"e954a686-45b4-4962-9f84-c63346e40c3f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/tolani-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test-uami\": {\r\n \"principalId\": \"1588532d-e046-4901-8b35-2d071681f000\",\r\n \"clientId\": \"78058a3e-8861-46fe-89e3-9387eca26d6a\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/redis/RedisBegin304?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4zOTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjMwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/redis/RedisBegin2647?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41Mjg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjI2NDc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "43ce4534-1485-4354-9b30-37cf1b345cd9" + "1531ee90-0481-4805-bd0c-52832128ab0b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:17:59 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "d3c82cff-cb38-4dab-8a7e-756f89f80023" + "5cdf74a8-bc87-4568-a750-b17fa3d19116" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1424,17 +1418,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11983" ], "x-ms-correlation-request-id": [ - "bd255d72-a93d-4d25-abea-e0813ab2aee4" + "6c1b1926-12d1-485a-a11c-7c2391134977" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T181800Z:bd255d72-a93d-4d25-abea-e0813ab2aee4" + "WESTUS2:20221017T180646Z:6c1b1926-12d1-485a-a11c-7c2391134977" + ], + "Date": [ + "Mon, 17 Oct 2022 18:06:46 GMT" ], "Content-Length": [ - "1194" + "1202" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1443,46 +1443,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/Redis/RedisBegin304\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin304\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin304.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"7ded3234-d168-4403-a305-0055e5b4f740\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/prn-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test\": {\r\n \"principalId\": \"8834a85a-e764-4150-bec5-60ae558026be\",\r\n \"clientId\": \"361b0f99-cdac-4d41-9b5f-7ac5715f4830\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/Redis/RedisBegin2647\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin2647\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin2647.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"e954a686-45b4-4962-9f84-c63346e40c3f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/tolani-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test-uami\": {\r\n \"principalId\": \"1588532d-e046-4901-8b35-2d071681f000\",\r\n \"clientId\": \"78058a3e-8861-46fe-89e3-9387eca26d6a\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/redis/RedisBegin304?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4zOTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjMwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/redis/RedisBegin2647?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41Mjg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjI2NDc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6274c887-088a-491b-b8e0-0d5be89e480a" + "625a538e-89bb-4b15-a856-d25a46c24da5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:18:30 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "4c3621ae-361d-40b2-be22-8f8976add495" + "df06d52c-5510-43b9-9739-fd65bb19300d" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1490,17 +1484,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11982" ], "x-ms-correlation-request-id": [ - "c3114e5c-7836-4afb-92c2-d54f7007eab4" + "75107d17-5193-49c3-a93f-661d096e0d61" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T181830Z:c3114e5c-7836-4afb-92c2-d54f7007eab4" + "WESTUS2:20221017T180716Z:75107d17-5193-49c3-a93f-661d096e0d61" + ], + "Date": [ + "Mon, 17 Oct 2022 18:07:16 GMT" ], "Content-Length": [ - "1194" + "1202" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1509,46 +1509,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/Redis/RedisBegin304\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin304\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin304.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"7ded3234-d168-4403-a305-0055e5b4f740\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/prn-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test\": {\r\n \"principalId\": \"8834a85a-e764-4150-bec5-60ae558026be\",\r\n \"clientId\": \"361b0f99-cdac-4d41-9b5f-7ac5715f4830\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/Redis/RedisBegin2647\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin2647\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin2647.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"e954a686-45b4-4962-9f84-c63346e40c3f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/tolani-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test-uami\": {\r\n \"principalId\": \"1588532d-e046-4901-8b35-2d071681f000\",\r\n \"clientId\": \"78058a3e-8861-46fe-89e3-9387eca26d6a\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/redis/RedisBegin304?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4zOTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjMwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/redis/RedisBegin2647?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41Mjg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjI2NDc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a206a3d8-db16-488e-b817-b7537d030acb" + "eabb0a3c-7197-4843-a02a-3cc41016493f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:19:01 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "fe9506b7-3661-4460-973c-ee74056f1530" + "31e8445a-bee5-4c6c-85c1-7fe322297f8d" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1556,17 +1550,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11981" ], "x-ms-correlation-request-id": [ - "4bb72832-0c8c-490d-97fc-8035bddb14b5" + "9c3713c4-ad4f-46ae-82e5-6788c591d66b" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T181901Z:4bb72832-0c8c-490d-97fc-8035bddb14b5" + "WESTUS2:20221017T180747Z:9c3713c4-ad4f-46ae-82e5-6788c591d66b" + ], + "Date": [ + "Mon, 17 Oct 2022 18:07:46 GMT" ], "Content-Length": [ - "1194" + "1202" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1575,46 +1575,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/Redis/RedisBegin304\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin304\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin304.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"7ded3234-d168-4403-a305-0055e5b4f740\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/prn-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test\": {\r\n \"principalId\": \"8834a85a-e764-4150-bec5-60ae558026be\",\r\n \"clientId\": \"361b0f99-cdac-4d41-9b5f-7ac5715f4830\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/Redis/RedisBegin2647\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin2647\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin2647.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"e954a686-45b4-4962-9f84-c63346e40c3f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/tolani-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test-uami\": {\r\n \"principalId\": \"1588532d-e046-4901-8b35-2d071681f000\",\r\n \"clientId\": \"78058a3e-8861-46fe-89e3-9387eca26d6a\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/redis/RedisBegin304?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4zOTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjMwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/redis/RedisBegin2647?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41Mjg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjI2NDc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b09f814a-a59a-4ee4-9a1c-1ac0624b0cde" + "32eafd17-1c0b-44ad-b31f-904d3da2e25c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:19:30 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "b6561ece-6e0c-4b3b-aa4f-a305fde51252" + "961e73b3-5174-4f75-948c-242b2aaca89e" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1622,17 +1616,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11980" ], "x-ms-correlation-request-id": [ - "9e135cc3-bd4b-489a-8b0d-b1c2ef8e69f0" + "6dfffe34-564e-4620-b804-88081be79752" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T181931Z:9e135cc3-bd4b-489a-8b0d-b1c2ef8e69f0" + "WESTUS2:20221017T180817Z:6dfffe34-564e-4620-b804-88081be79752" + ], + "Date": [ + "Mon, 17 Oct 2022 18:08:16 GMT" ], "Content-Length": [ - "1194" + "1202" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1641,46 +1641,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/Redis/RedisBegin304\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin304\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin304.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"7ded3234-d168-4403-a305-0055e5b4f740\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/prn-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test\": {\r\n \"principalId\": \"8834a85a-e764-4150-bec5-60ae558026be\",\r\n \"clientId\": \"361b0f99-cdac-4d41-9b5f-7ac5715f4830\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/Redis/RedisBegin2647\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin2647\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin2647.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"e954a686-45b4-4962-9f84-c63346e40c3f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/tolani-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test-uami\": {\r\n \"principalId\": \"1588532d-e046-4901-8b35-2d071681f000\",\r\n \"clientId\": \"78058a3e-8861-46fe-89e3-9387eca26d6a\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/redis/RedisBegin304?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4zOTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjMwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/redis/RedisBegin2647?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41Mjg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjI2NDc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2e19410d-40f4-4698-bf84-7fa5cf268ae2" + "72ce4b21-28ab-4e45-a7af-5bbe315b8a79" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:20:01 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "469f504a-57e0-42ec-9139-860fb7262225" + "67f49dd0-ec3f-4b5b-8cbe-6fc943eda977" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1691,14 +1685,20 @@ "x-ms-ratelimit-remaining-subscription-reads": [ "11979" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "9296716d-b3be-4a3d-ae71-16bcadcb2e1a" + "d80e904a-c0f5-4d8c-9a41-97639b2c782c" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T182002Z:9296716d-b3be-4a3d-ae71-16bcadcb2e1a" + "WESTUS2:20221017T180847Z:d80e904a-c0f5-4d8c-9a41-97639b2c782c" + ], + "Date": [ + "Mon, 17 Oct 2022 18:08:47 GMT" ], "Content-Length": [ - "1194" + "1202" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1707,46 +1707,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/Redis/RedisBegin304\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin304\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin304.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"7ded3234-d168-4403-a305-0055e5b4f740\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/prn-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test\": {\r\n \"principalId\": \"8834a85a-e764-4150-bec5-60ae558026be\",\r\n \"clientId\": \"361b0f99-cdac-4d41-9b5f-7ac5715f4830\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/Redis/RedisBegin2647\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin2647\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin2647.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"e954a686-45b4-4962-9f84-c63346e40c3f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/tolani-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test-uami\": {\r\n \"principalId\": \"1588532d-e046-4901-8b35-2d071681f000\",\r\n \"clientId\": \"78058a3e-8861-46fe-89e3-9387eca26d6a\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/redis/RedisBegin304?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4zOTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjMwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/redis/RedisBegin2647?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41Mjg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjI2NDc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7b6731e-5baa-4852-bef6-763c31482750" + "a2cab9b8-ec64-4efc-b558-4e027a9f337c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:20:32 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "0baee006-5972-4426-8b1e-18dabb9d434b" + "1a9150b6-52a0-4401-ac9d-2742065eb466" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1754,17 +1748,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11978" ], "x-ms-correlation-request-id": [ - "8261fee7-9535-4abc-b5e1-7a1897ba99f4" + "f88668c3-4576-4c49-8c67-b7faa74e191a" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T182032Z:8261fee7-9535-4abc-b5e1-7a1897ba99f4" + "WESTUS2:20221017T180917Z:f88668c3-4576-4c49-8c67-b7faa74e191a" + ], + "Date": [ + "Mon, 17 Oct 2022 18:09:17 GMT" ], "Content-Length": [ - "1194" + "1202" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1773,46 +1773,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/Redis/RedisBegin304\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin304\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin304.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"7ded3234-d168-4403-a305-0055e5b4f740\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/prn-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test\": {\r\n \"principalId\": \"8834a85a-e764-4150-bec5-60ae558026be\",\r\n \"clientId\": \"361b0f99-cdac-4d41-9b5f-7ac5715f4830\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/Redis/RedisBegin2647\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin2647\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin2647.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"e954a686-45b4-4962-9f84-c63346e40c3f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/tolani-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test-uami\": {\r\n \"principalId\": \"1588532d-e046-4901-8b35-2d071681f000\",\r\n \"clientId\": \"78058a3e-8861-46fe-89e3-9387eca26d6a\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/redis/RedisBegin304?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4zOTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjMwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/redis/RedisBegin2647?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41Mjg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjI2NDc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "226b5f74-8a51-4c01-8ce3-84be3f0ed3b2" + "65df7d15-b087-49bd-a3cc-d9fbb3017958" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:21:03 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "6774b812-e2d9-4a90-b40d-a0342136bdfc" + "522f49b9-489b-4440-9d10-5c67eb9cebcd" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1820,17 +1814,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11977" ], "x-ms-correlation-request-id": [ - "3bf753ce-1290-44df-9eac-48404ee47b6a" + "2158c12d-17f0-4937-80f8-2afc4dbe6042" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T182103Z:3bf753ce-1290-44df-9eac-48404ee47b6a" + "WESTUS2:20221017T180948Z:2158c12d-17f0-4937-80f8-2afc4dbe6042" + ], + "Date": [ + "Mon, 17 Oct 2022 18:09:47 GMT" ], "Content-Length": [ - "1194" + "1200" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1839,46 +1839,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/Redis/RedisBegin304\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin304\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin304.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"7ded3234-d168-4403-a305-0055e5b4f740\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/prn-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test\": {\r\n \"principalId\": \"8834a85a-e764-4150-bec5-60ae558026be\",\r\n \"clientId\": \"361b0f99-cdac-4d41-9b5f-7ac5715f4830\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/Redis/RedisBegin2647\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin2647\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin2647.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"e954a686-45b4-4962-9f84-c63346e40c3f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/tolani-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test-uami\": {\r\n \"principalId\": \"1588532d-e046-4901-8b35-2d071681f000\",\r\n \"clientId\": \"78058a3e-8861-46fe-89e3-9387eca26d6a\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/redis/RedisBegin304?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4zOTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjMwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/redis/RedisBegin2647?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41Mjg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjI2NDc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "11d40894-bc96-4ac1-8c04-5d333b8f8a19" + "ef024e72-1b71-4297-94e8-09c7780a1b5b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:21:33 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "09f33ab8-9454-4189-bf0a-77edb64e0cc0" + "5d5e65be-021d-48d9-a7e2-458c1a26b324" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1886,17 +1880,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11976" ], "x-ms-correlation-request-id": [ - "8d86ebcb-204d-47f2-b102-8880d2374186" + "79a9ff80-f16f-4eec-b8f4-77ecb823541c" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T182133Z:8d86ebcb-204d-47f2-b102-8880d2374186" + "WESTUS2:20221017T181018Z:79a9ff80-f16f-4eec-b8f4-77ecb823541c" + ], + "Date": [ + "Mon, 17 Oct 2022 18:10:18 GMT" ], "Content-Length": [ - "1194" + "1200" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1905,46 +1905,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/Redis/RedisBegin304\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin304\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin304.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"7ded3234-d168-4403-a305-0055e5b4f740\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/prn-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test\": {\r\n \"principalId\": \"8834a85a-e764-4150-bec5-60ae558026be\",\r\n \"clientId\": \"361b0f99-cdac-4d41-9b5f-7ac5715f4830\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/Redis/RedisBegin2647\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin2647\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin2647.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"e954a686-45b4-4962-9f84-c63346e40c3f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/tolani-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test-uami\": {\r\n \"principalId\": \"1588532d-e046-4901-8b35-2d071681f000\",\r\n \"clientId\": \"78058a3e-8861-46fe-89e3-9387eca26d6a\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/redis/RedisBegin304?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4zOTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjMwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/redis/RedisBegin2647?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41Mjg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjI2NDc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7cdfbc79-b763-40b1-9161-00afbcb6a3e5" + "c2d27464-88c7-47cb-b1c7-f7c765ecf68c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:22:04 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "d685e8e6-27f3-428b-9bc2-3f4ca12e1dc3" + "ee09ecc5-f229-4ba3-b3fb-d88f2f39f694" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1952,17 +1946,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11975" ], "x-ms-correlation-request-id": [ - "26686477-dc81-478d-85d9-72dbcdbbd2f8" + "cb2932b0-4a8c-4241-8f7b-f569e0f9409c" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T182204Z:26686477-dc81-478d-85d9-72dbcdbbd2f8" + "WESTUS2:20221017T181048Z:cb2932b0-4a8c-4241-8f7b-f569e0f9409c" + ], + "Date": [ + "Mon, 17 Oct 2022 18:10:48 GMT" ], "Content-Length": [ - "1194" + "1201" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1971,46 +1971,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/Redis/RedisBegin304\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin304\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin304.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"7ded3234-d168-4403-a305-0055e5b4f740\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/prn-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test\": {\r\n \"principalId\": \"8834a85a-e764-4150-bec5-60ae558026be\",\r\n \"clientId\": \"361b0f99-cdac-4d41-9b5f-7ac5715f4830\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/Redis/RedisBegin2647\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin2647\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin2647.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"e954a686-45b4-4962-9f84-c63346e40c3f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/tolani-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test-uami\": {\r\n \"principalId\": \"1588532d-e046-4901-8b35-2d071681f000\",\r\n \"clientId\": \"78058a3e-8861-46fe-89e3-9387eca26d6a\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/redis/RedisBegin304?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4zOTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjMwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/redis/RedisBegin2647?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41Mjg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjI2NDc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "1979e387-d6da-4693-9451-b14192a93432" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:22:34 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "c5ca4dde-bfba-4d9a-93fd-428753696ba1" + "c2f6e242-5944-4093-a28b-cb533b9b2a27" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2018,17 +2006,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11971" ], "x-ms-correlation-request-id": [ - "19b5a1d9-1b55-4639-899e-fb64f19944da" + "dbe94d06-1563-43f2-a79e-0ef30b221e5a" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T182234Z:19b5a1d9-1b55-4639-899e-fb64f19944da" + "WESTUS2:20221017T181220Z:dbe94d06-1563-43f2-a79e-0ef30b221e5a" + ], + "Date": [ + "Mon, 17 Oct 2022 18:12:19 GMT" ], "Content-Length": [ - "1192" + "907" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2037,46 +2031,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/Redis/RedisBegin304\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin304\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin304.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"7ded3234-d168-4403-a305-0055e5b4f740\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/prn-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test\": {\r\n \"principalId\": \"8834a85a-e764-4150-bec5-60ae558026be\",\r\n \"clientId\": \"361b0f99-cdac-4d41-9b5f-7ac5715f4830\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/Redis/RedisBegin2647\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin2647\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin2647.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"e954a686-45b4-4962-9f84-c63346e40c3f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/redis/RedisBegin304?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4zOTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjMwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/redis/RedisBegin2647?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41Mjg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjI2NDc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "aacc5986-4b18-4b59-b835-5d7dce37ae5f" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:23:04 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "7e451414-830f-4104-b015-4c3d794dfdf9" + "aaf6ef8d-78bf-4267-a348-45e40aec2e43" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2084,17 +2066,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11967" ], "x-ms-correlation-request-id": [ - "4503cebe-c2e3-41f6-8792-4d9614c35bf7" + "0036dd7c-bc06-4f0b-8b91-68fd156fc18a" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T182305Z:4503cebe-c2e3-41f6-8792-4d9614c35bf7" + "WESTUS2:20221017T181453Z:0036dd7c-bc06-4f0b-8b91-68fd156fc18a" + ], + "Date": [ + "Mon, 17 Oct 2022 18:14:53 GMT" ], "Content-Length": [ - "1192" + "1082" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2103,46 +2091,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/Redis/RedisBegin304\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin304\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin304.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"7ded3234-d168-4403-a305-0055e5b4f740\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/prn-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test\": {\r\n \"principalId\": \"8834a85a-e764-4150-bec5-60ae558026be\",\r\n \"clientId\": \"361b0f99-cdac-4d41-9b5f-7ac5715f4830\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/Redis/RedisBegin2647\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin2647\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin2647.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/tolani-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test-uami\": {\r\n \"principalId\": \"1588532d-e046-4901-8b35-2d071681f000\",\r\n \"clientId\": \"78058a3e-8861-46fe-89e3-9387eca26d6a\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/redis/RedisBegin304?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4zOTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjMwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/redis/RedisBegin2647?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41Mjg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjI2NDc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "61a1ca00-aedd-4145-b52c-069140b619f7" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:23:36 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "5d26ee5f-f690-4b98-9aff-7e838417a091" + "80d4ba21-4480-4d42-9c20-33fc25939c3b" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2150,17 +2126,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11965" ], "x-ms-correlation-request-id": [ - "8f3cadd6-4bb1-491d-a07b-01d80dec4034" + "80179fe1-150f-4870-a3b5-fbe410ac5dba" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T182336Z:8f3cadd6-4bb1-491d-a07b-01d80dec4034" + "WESTUS2:20221017T181625Z:80179fe1-150f-4870-a3b5-fbe410ac5dba" + ], + "Date": [ + "Mon, 17 Oct 2022 18:16:24 GMT" ], "Content-Length": [ - "1193" + "767" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2169,26 +2151,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/Redis/RedisBegin304\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin304\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin304.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"principalId\": \"7ded3234-d168-4403-a305-0055e5b4f740\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/prn-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test\": {\r\n \"principalId\": \"8834a85a-e764-4150-bec5-60ae558026be\",\r\n \"clientId\": \"361b0f99-cdac-4d41-9b5f-7ac5715f4830\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/Redis/RedisBegin2647\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin2647\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin2647.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/redis/RedisBegin304?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4zOTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjMwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/redis/RedisBegin2647?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41Mjg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjI2NDc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a299427a-b725-4e8d-81f8-1f4050000ed0" + "93db6419-b34f-4582-b3fc-69866d4f8711" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2201,26 +2183,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:23:38 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/79fbe734-fb0e-40eb-ba34-8ff3f2ede1b0?api-version=2021-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/04668957-a35e-4dbe-825b-c85355653756?api-version=2022-06-01" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/79fbe734-fb0e-40eb-ba34-8ff3f2ede1b0?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/04668957-a35e-4dbe-825b-c85355653756?api-version=2022-06-01" ], "x-ms-request-id": [ - "79fbe734-fb0e-40eb-ba34-8ff3f2ede1b0" + "04668957-a35e-4dbe-825b-c85355653756" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2228,14 +2204,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "47fb3637-d844-4357-aa0d-3071320c6d4a" + "a128592a-d2cd-46fb-b1c6-2f566ae76bfb" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T182339Z:47fb3637-d844-4357-aa0d-3071320c6d4a" + "WESTUS2:20221017T181050Z:a128592a-d2cd-46fb-b1c6-2f566ae76bfb" + ], + "Date": [ + "Mon, 17 Oct 2022 18:10:49 GMT" ], "Content-Length": [ "1236" @@ -2247,58 +2229,52 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/Redis/RedisBegin304\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin304\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin304.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"7ded3234-d168-4403-a305-0055e5b4f740\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/Redis/RedisBegin2647\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin2647\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin2647.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"e954a686-45b4-4962-9f84-c63346e40c3f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/redis/RedisBegin304?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4zOTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjMwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/redis/RedisBegin2647?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41Mjg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjI2NDc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/prn-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test\": {}\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/tolani-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test-uami\": {}\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fb8a099e-9ed8-44f2-8b5f-32c15e07bea6" + "476d391f-7577-4a58-9b45-6ba79c1ae43f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "246" + "254" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:24:42 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/c5c46ed8-dd99-4c12-931d-26010d544df7?api-version=2021-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/b873c455-acbb-4bda-9fd2-3ef74b357d44?api-version=2022-06-01" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/c5c46ed8-dd99-4c12-931d-26010d544df7?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/b873c455-acbb-4bda-9fd2-3ef74b357d44?api-version=2022-06-01" ], "x-ms-request-id": [ - "c5c46ed8-dd99-4c12-931d-26010d544df7" + "b873c455-acbb-4bda-9fd2-3ef74b357d44" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2306,17 +2282,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1197" ], "x-ms-correlation-request-id": [ - "832e43a3-202c-4a34-bec7-46c0ab5da805" + "2368b090-b10a-4fbf-a0cb-5c515942be09" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T182443Z:832e43a3-202c-4a34-bec7-46c0ab5da805" + "WESTUS2:20221017T181322Z:2368b090-b10a-4fbf-a0cb-5c515942be09" + ], + "Date": [ + "Mon, 17 Oct 2022 18:13:21 GMT" ], "Content-Length": [ - "1441" + "1449" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2325,26 +2307,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/Redis/RedisBegin304\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin304\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin304.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/prn-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test\": {\r\n \"principalId\": \"8834a85a-e764-4150-bec5-60ae558026be\",\r\n \"clientId\": \"361b0f99-cdac-4d41-9b5f-7ac5715f4830\"\r\n }\r\n }\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/Redis/RedisBegin2647\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin2647\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin2647.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/tolani-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test-uami\": {\r\n \"principalId\": \"1588532d-e046-4901-8b35-2d071681f000\",\r\n \"clientId\": \"78058a3e-8861-46fe-89e3-9387eca26d6a\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/redis/RedisBegin304?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4zOTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjMwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/redis/RedisBegin2647?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41Mjg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjI2NDc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "597405e7-9208-436f-8ea4-ca6bcbd969e2" + "807542a0-5431-4c53-b219-61a2423ea48d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2357,26 +2339,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:25:46 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/274c2672-d258-4140-a26e-c193fb475fde?api-version=2021-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/9f11c8bd-05ef-4d10-b407-ebd5d3cd3168?api-version=2022-06-01" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/274c2672-d258-4140-a26e-c193fb475fde?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/9f11c8bd-05ef-4d10-b407-ebd5d3cd3168?api-version=2022-06-01" ], "x-ms-request-id": [ - "274c2672-d258-4140-a26e-c193fb475fde" + "9f11c8bd-05ef-4d10-b407-ebd5d3cd3168" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2384,14 +2360,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-correlation-request-id": [ - "aa51336e-c529-452c-8f36-a252d3e9612d" + "d728ccf0-c6ed-4e78-a0e9-31d91cf99c9a" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T182547Z:aa51336e-c529-452c-8f36-a252d3e9612d" + "WESTUS2:20221017T181555Z:d728ccf0-c6ed-4e78-a0e9-31d91cf99c9a" + ], + "Date": [ + "Mon, 17 Oct 2022 18:15:54 GMT" ], "Content-Length": [ "1066" @@ -2403,49 +2385,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/Redis/RedisBegin304\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin304\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin304.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/Redis/RedisBegin2647\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisBegin2647\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin2647.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisBegin3906/providers/Microsoft.Cache/redis/RedisBegin304?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW4zOTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjMwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/04668957-a35e-4dbe-825b-c85355653756?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDQ2Njg5NTctYTM1ZS00ZGJlLTgyNWItYzg1MzU1NjUzNzU2P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "b68bd353-a81d-47df-a80a-bd7c6dd51110" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:25:47 GMT" - ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/5a7ab284-f0eb-4028-87d0-fb3867ead067?api-version=2021-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/04668957-a35e-4dbe-825b-c85355653756?api-version=2022-06-01" ], "x-ms-request-id": [ - "5a7ab284-f0eb-4028-87d0-fb3867ead067" + "cfafe90d-e3a4-4302-9dc4-341bcfaaeb85" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2453,59 +2423,62 @@ "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" ], "x-ms-correlation-request-id": [ - "e0f0405f-595b-4822-8b9e-7c41dd0e8912" + "1ffd2a10-7f2b-4008-ad5d-67ed6bbe7b36" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T182548Z:e0f0405f-595b-4822-8b9e-7c41dd0e8912" + "WESTUS2:20221017T181120Z:1ffd2a10-7f2b-4008-ad5d-67ed6bbe7b36" + ], + "Date": [ + "Mon, 17 Oct 2022 18:11:19 GMT" ], "Content-Length": [ - "0" + "353" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/04668957-a35e-4dbe-825b-c85355653756\",\r\n \"name\": \"04668957-a35e-4dbe-825b-c85355653756\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/5a7ab284-f0eb-4028-87d0-fb3867ead067?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzVhN2FiMjg0LWYwZWItNDAyOC04N2QwLWZiMzg2N2VhZDA2Nz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/04668957-a35e-4dbe-825b-c85355653756?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDQ2Njg5NTctYTM1ZS00ZGJlLTgyNWItYzg1MzU1NjUzNzU2P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:26:18 GMT" - ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/5a7ab284-f0eb-4028-87d0-fb3867ead067?api-version=2021-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/04668957-a35e-4dbe-825b-c85355653756?api-version=2022-06-01" ], "x-ms-request-id": [ - "e8766634-3e8d-4e18-9512-da239372ff02" + "750f6ed6-baad-4f7f-8283-c150d567db0d" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2513,59 +2486,62 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11973" ], "x-ms-correlation-request-id": [ - "54a586fa-8d42-4164-abc5-ff9d95859279" + "4da02e02-86e9-48f3-be7f-2e5c3c648d69" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T182618Z:54a586fa-8d42-4164-abc5-ff9d95859279" + "WESTUS2:20221017T181150Z:4da02e02-86e9-48f3-be7f-2e5c3c648d69" + ], + "Date": [ + "Mon, 17 Oct 2022 18:11:49 GMT" ], "Content-Length": [ - "0" + "353" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/04668957-a35e-4dbe-825b-c85355653756\",\r\n \"name\": \"04668957-a35e-4dbe-825b-c85355653756\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/5a7ab284-f0eb-4028-87d0-fb3867ead067?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzVhN2FiMjg0LWYwZWItNDAyOC04N2QwLWZiMzg2N2VhZDA2Nz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/04668957-a35e-4dbe-825b-c85355653756?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDQ2Njg5NTctYTM1ZS00ZGJlLTgyNWItYzg1MzU1NjUzNzU2P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:26:49 GMT" - ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/5a7ab284-f0eb-4028-87d0-fb3867ead067?api-version=2021-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/04668957-a35e-4dbe-825b-c85355653756?api-version=2022-06-01" ], "x-ms-request-id": [ - "fa82b81f-8747-4311-969c-d6ddb3ba0309" + "f1fd1078-6d8c-478e-b6bc-84f874ce2adf" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2573,59 +2549,62 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11972" ], "x-ms-correlation-request-id": [ - "0ffb9596-4360-4aa4-9d69-ef6878005f04" + "f51050ab-e618-4445-8754-de2794cb9744" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T182649Z:0ffb9596-4360-4aa4-9d69-ef6878005f04" + "WESTUS2:20221017T181220Z:f51050ab-e618-4445-8754-de2794cb9744" + ], + "Date": [ + "Mon, 17 Oct 2022 18:12:19 GMT" ], "Content-Length": [ - "0" + "352" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/04668957-a35e-4dbe-825b-c85355653756\",\r\n \"name\": \"04668957-a35e-4dbe-825b-c85355653756\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/5a7ab284-f0eb-4028-87d0-fb3867ead067?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzVhN2FiMjg0LWYwZWItNDAyOC04N2QwLWZiMzg2N2VhZDA2Nz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/b873c455-acbb-4bda-9fd2-3ef74b357d44?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvYjg3M2M0NTUtYWNiYi00YmRhLTlmZDItM2VmNzRiMzU3ZDQ0P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:27:19 GMT" - ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/5a7ab284-f0eb-4028-87d0-fb3867ead067?api-version=2021-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/b873c455-acbb-4bda-9fd2-3ef74b357d44?api-version=2022-06-01" ], "x-ms-request-id": [ - "80eb4601-7a30-4643-9369-acb5b5aeb963" + "72011cf9-8a1a-4129-8f94-50d8bf68fc54" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2633,59 +2612,62 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11970" ], "x-ms-correlation-request-id": [ - "e410f5e8-825e-4755-aee5-7b583791c30f" + "75b794ee-c4ad-41ec-acdc-0cdd5fa03d74" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T182719Z:e410f5e8-825e-4755-aee5-7b583791c30f" + "WESTUS2:20221017T181352Z:75b794ee-c4ad-41ec-acdc-0cdd5fa03d74" + ], + "Date": [ + "Mon, 17 Oct 2022 18:13:51 GMT" ], "Content-Length": [ - "0" + "353" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/b873c455-acbb-4bda-9fd2-3ef74b357d44\",\r\n \"name\": \"b873c455-acbb-4bda-9fd2-3ef74b357d44\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/5a7ab284-f0eb-4028-87d0-fb3867ead067?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzVhN2FiMjg0LWYwZWItNDAyOC04N2QwLWZiMzg2N2VhZDA2Nz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/b873c455-acbb-4bda-9fd2-3ef74b357d44?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvYjg3M2M0NTUtYWNiYi00YmRhLTlmZDItM2VmNzRiMzU3ZDQ0P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:27:49 GMT" - ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/5a7ab284-f0eb-4028-87d0-fb3867ead067?api-version=2021-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/b873c455-acbb-4bda-9fd2-3ef74b357d44?api-version=2022-06-01" ], "x-ms-request-id": [ - "aca60481-368f-46ff-8c40-3c60fdfedcc6" + "f992d8ae-217b-4774-ae9a-d8822fd01e6e" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2693,59 +2675,62 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11969" ], "x-ms-correlation-request-id": [ - "8f11d2f0-6535-470e-a518-d1bf11bb3453" + "e8968f25-a788-459c-af7f-e4c5bf13c96a" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T182749Z:8f11d2f0-6535-470e-a518-d1bf11bb3453" + "WESTUS2:20221017T181422Z:e8968f25-a788-459c-af7f-e4c5bf13c96a" + ], + "Date": [ + "Mon, 17 Oct 2022 18:14:22 GMT" ], "Content-Length": [ - "0" + "353" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/b873c455-acbb-4bda-9fd2-3ef74b357d44\",\r\n \"name\": \"b873c455-acbb-4bda-9fd2-3ef74b357d44\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/5a7ab284-f0eb-4028-87d0-fb3867ead067?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzVhN2FiMjg0LWYwZWItNDAyOC04N2QwLWZiMzg2N2VhZDA2Nz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/b873c455-acbb-4bda-9fd2-3ef74b357d44?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvYjg3M2M0NTUtYWNiYi00YmRhLTlmZDItM2VmNzRiMzU3ZDQ0P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:28:20 GMT" - ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/5a7ab284-f0eb-4028-87d0-fb3867ead067?api-version=2021-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/b873c455-acbb-4bda-9fd2-3ef74b357d44?api-version=2022-06-01" ], "x-ms-request-id": [ - "2fcca429-0712-47b7-9856-65db477e49b6" + "74bc93b6-e82f-4a00-b2c9-11ee1c9aac2b" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2753,59 +2738,62 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11968" ], "x-ms-correlation-request-id": [ - "271fb670-a2ad-4317-a355-dfd48147f907" + "5d3e4331-9397-434d-a5ff-28a5bb086b47" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T182820Z:271fb670-a2ad-4317-a355-dfd48147f907" + "WESTUS2:20221017T181453Z:5d3e4331-9397-434d-a5ff-28a5bb086b47" + ], + "Date": [ + "Mon, 17 Oct 2022 18:14:52 GMT" ], "Content-Length": [ - "0" + "352" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/b873c455-acbb-4bda-9fd2-3ef74b357d44\",\r\n \"name\": \"b873c455-acbb-4bda-9fd2-3ef74b357d44\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/5a7ab284-f0eb-4028-87d0-fb3867ead067?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzVhN2FiMjg0LWYwZWItNDAyOC04N2QwLWZiMzg2N2VhZDA2Nz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/9f11c8bd-05ef-4d10-b407-ebd5d3cd3168?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOWYxMWM4YmQtMDVlZi00ZDEwLWI0MDctZWJkNWQzY2QzMTY4P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:28:50 GMT" - ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/5a7ab284-f0eb-4028-87d0-fb3867ead067?api-version=2021-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/9f11c8bd-05ef-4d10-b407-ebd5d3cd3168?api-version=2022-06-01" ], "x-ms-request-id": [ - "6326e077-663d-407b-8ce4-c08007f3f10e" + "07cf3c0a-bb35-45cc-bccf-9a89a7c715f4" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2813,59 +2801,188 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11966" ], "x-ms-correlation-request-id": [ - "b7f815cd-9d36-4646-b695-fedca93bd9fc" + "1cafcc5a-703f-4b85-9bf6-9e18dd7d1877" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T182850Z:b7f815cd-9d36-4646-b695-fedca93bd9fc" + "WESTUS2:20221017T181625Z:1cafcc5a-703f-4b85-9bf6-9e18dd7d1877" + ], + "Date": [ + "Mon, 17 Oct 2022 18:16:24 GMT" ], "Content-Length": [ - "0" + "352" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/9f11c8bd-05ef-4d10-b407-ebd5d3cd3168\",\r\n \"name\": \"9f11c8bd-05ef-4d10-b407-ebd5d3cd3168\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisBegin5286/providers/Microsoft.Cache/redis/RedisBegin2647?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41Mjg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNCZWdpbjI2NDc/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a9d7ba8e-cb98-46d0-aafd-9f0c81d5cfab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/78068982-1386-47e6-8ca0-3162b35e11fe?api-version=2022-06-01" + ], + "x-ms-request-id": [ + "78068982-1386-47e6-8ca0-3162b35e11fe" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "8e9d9ae8-f312-4eb0-8209-4ce77651c2a7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T181625Z:8e9d9ae8-f312-4eb0-8209-4ce77651c2a7" + ], + "Date": [ + "Mon, 17 Oct 2022 18:16:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/5a7ab284-f0eb-4028-87d0-fb3867ead067?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzVhN2FiMjg0LWYwZWItNDAyOC04N2QwLWZiMzg2N2VhZDA2Nz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/78068982-1386-47e6-8ca0-3162b35e11fe?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzc4MDY4OTgyLTEzODYtNDdlNi04Y2EwLTMxNjJiMzVlMTFmZT9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:29:19 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/5a7ab284-f0eb-4028-87d0-fb3867ead067?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/78068982-1386-47e6-8ca0-3162b35e11fe?api-version=2022-06-01" + ], + "x-ms-request-id": [ + "545f33b1-211d-456e-ac6a-6c3093cf4533" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-correlation-request-id": [ + "637d53f1-21e4-4e4f-b8e3-fb488eb9557b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T181655Z:637d53f1-21e4-4e4f-b8e3-fb488eb9557b" + ], + "Date": [ + "Mon, 17 Oct 2022 18:16:54 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/78068982-1386-47e6-8ca0-3162b35e11fe?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzc4MDY4OTgyLTEzODYtNDdlNi04Y2EwLTMxNjJiMzVlMTFmZT9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/78068982-1386-47e6-8ca0-3162b35e11fe?api-version=2022-06-01" + ], "x-ms-request-id": [ - "29ef9bc4-f057-4a90-befd-40b182b46b04" + "041837f5-216f-4d7b-b0eb-da9021eca82e" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2873,59 +2990,119 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11963" ], "x-ms-correlation-request-id": [ - "8bfc00fa-f9ed-4b83-842c-90618987481d" + "3f0ab9bc-cf28-460c-af99-ba1630aff593" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T182920Z:8bfc00fa-f9ed-4b83-842c-90618987481d" + "WESTUS2:20221017T181725Z:3f0ab9bc-cf28-460c-af99-ba1630aff593" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 17 Oct 2022 18:17:24 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/5a7ab284-f0eb-4028-87d0-fb3867ead067?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzVhN2FiMjg0LWYwZWItNDAyOC04N2QwLWZiMzg2N2VhZDA2Nz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/78068982-1386-47e6-8ca0-3162b35e11fe?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzc4MDY4OTgyLTEzODYtNDdlNi04Y2EwLTMxNjJiMzVlMTFmZT9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:29:50 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/5a7ab284-f0eb-4028-87d0-fb3867ead067?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/78068982-1386-47e6-8ca0-3162b35e11fe?api-version=2022-06-01" + ], + "x-ms-request-id": [ + "4912a02a-c8d6-441d-8c38-3bb9d05995c6" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-correlation-request-id": [ + "b9f0af08-25d2-447f-bef9-ea0633812e91" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T181755Z:b9f0af08-25d2-447f-bef9-ea0633812e91" + ], + "Date": [ + "Mon, 17 Oct 2022 18:17:54 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/78068982-1386-47e6-8ca0-3162b35e11fe?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzc4MDY4OTgyLTEzODYtNDdlNi04Y2EwLTMxNjJiMzVlMTFmZT9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/78068982-1386-47e6-8ca0-3162b35e11fe?api-version=2022-06-01" + ], "x-ms-request-id": [ - "c7bdd894-024e-4455-8647-6b448758194d" + "8ef36556-b54a-4a92-ac91-9fae27f892a3" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2933,59 +3110,119 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11961" ], "x-ms-correlation-request-id": [ - "5e7af0b2-02b3-4b3e-b0a0-4c510fde9ba1" + "f42a4a82-0924-48cc-bd9e-87e166c61af6" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T182951Z:5e7af0b2-02b3-4b3e-b0a0-4c510fde9ba1" + "WESTUS2:20221017T181825Z:f42a4a82-0924-48cc-bd9e-87e166c61af6" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 17 Oct 2022 18:18:24 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/5a7ab284-f0eb-4028-87d0-fb3867ead067?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzVhN2FiMjg0LWYwZWItNDAyOC04N2QwLWZiMzg2N2VhZDA2Nz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/78068982-1386-47e6-8ca0-3162b35e11fe?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzc4MDY4OTgyLTEzODYtNDdlNi04Y2EwLTMxNjJiMzVlMTFmZT9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:30:21 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/5a7ab284-f0eb-4028-87d0-fb3867ead067?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/78068982-1386-47e6-8ca0-3162b35e11fe?api-version=2022-06-01" + ], + "x-ms-request-id": [ + "97e98d76-35b2-4752-953b-8d8f3111b399" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-correlation-request-id": [ + "0bfe9897-a041-4bea-a067-1455224b3e26" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T181855Z:0bfe9897-a041-4bea-a067-1455224b3e26" + ], + "Date": [ + "Mon, 17 Oct 2022 18:18:55 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/78068982-1386-47e6-8ca0-3162b35e11fe?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzc4MDY4OTgyLTEzODYtNDdlNi04Y2EwLTMxNjJiMzVlMTFmZT9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/78068982-1386-47e6-8ca0-3162b35e11fe?api-version=2022-06-01" + ], "x-ms-request-id": [ - "3be4b737-a275-4bac-a332-8e56dd02b0cd" + "45ef5b44-b1e0-433e-89b7-2b2773263b7f" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2993,56 +3230,59 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11959" ], "x-ms-correlation-request-id": [ - "16231c44-2503-4017-9c37-d6d513a57dbf" + "64ea4b27-456e-4ecb-b459-e947cd1d0187" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T183021Z:16231c44-2503-4017-9c37-d6d513a57dbf" + "WESTUS2:20221017T181925Z:64ea4b27-456e-4ecb-b459-e947cd1d0187" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 17 Oct 2022 18:19:25 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/5a7ab284-f0eb-4028-87d0-fb3867ead067?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzVhN2FiMjg0LWYwZWItNDAyOC04N2QwLWZiMzg2N2VhZDA2Nz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/78068982-1386-47e6-8ca0-3162b35e11fe?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzc4MDY4OTgyLTEzODYtNDdlNi04Y2EwLTMxNjJiMzVlMTFmZT9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:30:51 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Location": [ + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/78068982-1386-47e6-8ca0-3162b35e11fe?api-version=2022-06-01" ], "x-ms-request-id": [ - "f4cf655f-3426-4658-ad59-4d0f1f3bb41e" + "3e1d324e-d603-4750-a0fc-f80d78fc7db2" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3050,56 +3290,176 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11958" ], "x-ms-correlation-request-id": [ - "3207803f-09e8-4eda-93f2-d5e8b423758c" + "f2cfe986-d6c9-415b-8410-92543bd2efe4" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T183052Z:3207803f-09e8-4eda-93f2-d5e8b423758c" + "WESTUS2:20221017T181956Z:f2cfe986-d6c9-415b-8410-92543bd2efe4" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 17 Oct 2022 18:19:55 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/operationresults/5a7ab284-f0eb-4028-87d0-fb3867ead067?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzVhN2FiMjg0LWYwZWItNDAyOC04N2QwLWZiMzg2N2VhZDA2Nz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/78068982-1386-47e6-8ca0-3162b35e11fe?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzc4MDY4OTgyLTEzODYtNDdlNi04Y2EwLTMxNjJiMzVlMTFmZT9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/78068982-1386-47e6-8ca0-3162b35e11fe?api-version=2022-06-01" + ], + "x-ms-request-id": [ + "afa12c5e-fe50-4d29-af73-d61febda2541" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "x-ms-correlation-request-id": [ + "53b371f7-01f5-40cd-9305-9d59d94dbf95" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T182026Z:53b371f7-01f5-40cd-9305-9d59d94dbf95" + ], "Date": [ - "Wed, 15 Dec 2021 18:30:52 GMT" + "Mon, 17 Oct 2022 18:20:25 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/78068982-1386-47e6-8ca0-3162b35e11fe?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzc4MDY4OTgyLTEzODYtNDdlNi04Y2EwLTMxNjJiMzVlMTFmZT9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/78068982-1386-47e6-8ca0-3162b35e11fe?api-version=2022-06-01" + ], + "x-ms-request-id": [ + "573af9ea-7b66-44b7-96cf-5e9f1b3526b1" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-correlation-request-id": [ + "a67afad4-2587-485e-8feb-e6617ac124be" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T182056Z:a67afad4-2587-485e-8feb-e6617ac124be" + ], + "Date": [ + "Mon, 17 Oct 2022 18:20:55 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/78068982-1386-47e6-8ca0-3162b35e11fe?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzc4MDY4OTgyLTEzODYtNDdlNi04Y2EwLTMxNjJiMzVlMTFmZT9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], "x-ms-request-id": [ - "b585c725-38a8-4fc3-bdc7-f4a076352675" + "cb03dde3-78e6-45c0-9670-ac257ac8dee5" ], "x-rp-server-mvid": [ - "d4ea5ce3-f7e2-40fb-b84e-6ac2f809a5f4" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3107,41 +3467,104 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11955" ], "x-ms-correlation-request-id": [ - "bb0d9d64-b752-4e06-940d-12895385409f" + "e0bca12d-2a11-4d32-82c8-7294aab85beb" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T183052Z:bb0d9d64-b752-4e06-940d-12895385409f" + "WESTUS2:20221017T182126Z:e0bca12d-2a11-4d32-82c8-7294aab85beb" + ], + "Date": [ + "Mon, 17 Oct 2022 18:21:25 GMT" + ], + "Expires": [ + "-1" ], "Content-Length": [ "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/operationresults/78068982-1386-47e6-8ca0-3162b35e11fe?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzc4MDY4OTgyLTEzODYtNDdlNi04Y2EwLTMxNjJiMzVlMTFmZT9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b185d5fd-9410-4dd9-bf5c-84c84a99b298" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" + ], + "x-ms-correlation-request-id": [ + "ed7660ef-3853-4d06-8838-283a63780b1d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T182126Z:ed7660ef-3853-4d06-8838-283a63780b1d" + ], + "Date": [ + "Mon, 17 Oct 2022 18:21:25 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/RedisBegin3906?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlZ3JvdXBzL1JlZGlzQmVnaW4zOTA2P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/RedisBegin5286?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlZ3JvdXBzL1JlZGlzQmVnaW41Mjg2P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a116877e-44d6-4c86-a7a2-23804eae9f82" + "9f93f24e-53dd-41cd-a8f5-53aadaf9669f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", + "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -3149,14 +3572,11 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:30:55 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0JFR0lOMzkwNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0JFR0lONTI4Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10" ], "Retry-After": [ "15" @@ -3165,13 +3585,13 @@ "14999" ], "x-ms-request-id": [ - "d6faf4b9-f233-42a8-9b70-40c42de02b40" + "6b24b3b0-0f27-4af6-b314-79cc5052f6e7" ], "x-ms-correlation-request-id": [ - "d6faf4b9-f233-42a8-9b70-40c42de02b40" + "6b24b3b0-0f27-4af6-b314-79cc5052f6e7" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T183055Z:d6faf4b9-f233-42a8-9b70-40c42de02b40" + "WESTUS2:20221017T182127Z:6b24b3b0-0f27-4af6-b314-79cc5052f6e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3179,26 +3599,29 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 17 Oct 2022 18:21:26 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0JFR0lOMzkwNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlVSSlUwSkZSMGxPTXprd05pMVhSVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0JFR0lONTI4Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlVSSlUwSkZSMGxPTlRJNE5pMVhSVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", + "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -3206,9 +3629,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:31:10 GMT" - ], "Pragma": [ "no-cache" ], @@ -3216,13 +3636,13 @@ "11999" ], "x-ms-request-id": [ - "4ff2ca26-7c41-4c14-a04c-24a0d32f9fc2" + "a3a14c81-d05c-4145-b519-1470c519a276" ], "x-ms-correlation-request-id": [ - "4ff2ca26-7c41-4c14-a04c-24a0d32f9fc2" + "a3a14c81-d05c-4145-b519-1470c519a276" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T183111Z:4ff2ca26-7c41-4c14-a04c-24a0d32f9fc2" + "WESTUS2:20221017T182142Z:a3a14c81-d05c-4145-b519-1470c519a276" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3230,26 +3650,29 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 17 Oct 2022 18:21:41 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0JFR0lOMzkwNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlVSSlUwSkZSMGxPTXprd05pMVhSVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0JFR0lONTI4Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlVSSlUwSkZSMGxPTlRJNE5pMVhSVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", + "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -3257,9 +3680,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Wed, 15 Dec 2021 18:31:10 GMT" - ], "Pragma": [ "no-cache" ], @@ -3267,13 +3687,13 @@ "11998" ], "x-ms-request-id": [ - "54925a5e-cbfe-436b-b331-92c57c32b951" + "93a7e4c7-cb0c-45d6-b46b-42f1f4af6ea6" ], "x-ms-correlation-request-id": [ - "54925a5e-cbfe-436b-b331-92c57c32b951" + "93a7e4c7-cb0c-45d6-b46b-42f1f4af6ea6" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211215T183111Z:54925a5e-cbfe-436b-b331-92c57c32b951" + "WESTUS2:20221017T182142Z:93a7e4c7-cb0c-45d6-b46b-42f1f4af6ea6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3281,11 +3701,14 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 17 Oct 2022 18:21:41 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -3294,11 +3717,11 @@ ], "Names": { "ManagedIdentityCreateUpdateFunctionalTest": [ - "RedisBegin3906", - "RedisBegin304" + "RedisBegin5286", + "RedisBegin2647" ] }, "Variables": { - "SubscriptionId": "0ee2a145-4d40-44f4-b764-67b40274f1ac" + "SubscriptionId": "3919658b-68ae-4509-8c17-6a2238340ae7" } } \ No newline at end of file diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/PatchSchedulesFunctionalTests/PatchSchedules_PutGetDelete.json b/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/PatchSchedulesFunctionalTests/PatchSchedules_PutGetDelete.json index 850891d031d1..fda117501e02 100644 --- a/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/PatchSchedulesFunctionalTests/PatchSchedules_PutGetDelete.json +++ b/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/PatchSchedulesFunctionalTests/PatchSchedules_PutGetDelete.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/register?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/register?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab04066b-bd4f-4c31-b4d2-801d9b01724f" + "e9ae4188-40cf-4207-a727-da6fff6a3df8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", + "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:22:06 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1198" ], "x-ms-request-id": [ - "763d8008-68ce-40da-b9cb-3ea0334a617f" + "927da57d-1e2b-4e30-8763-c931fda1a220" ], "x-ms-correlation-request-id": [ - "763d8008-68ce-40da-b9cb-3ea0334a617f" + "927da57d-1e2b-4e30-8763-c931fda1a220" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112207Z:763d8008-68ce-40da-b9cb-3ea0334a617f" + "WESTUS2:20221017T194243Z:927da57d-1e2b-4e30-8763-c931fda1a220" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,8 +44,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Mon, 17 Oct 2022 19:42:43 GMT" + ], "Content-Length": [ - "13832" + "14731" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,25 +57,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateLinkResources\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateLinkResources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise/databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/EventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"France South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Qatar Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateLinkResources\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateLinkResources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise/databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/EventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0ff360bf-9400-485f-9cdb-feff49e1f7c3" + "a3295a5a-67a1-47a3-9ef3-800f80dd6833" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", + "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -83,23 +83,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:22:06 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11997" ], "x-ms-request-id": [ - "3c06ca26-decd-4fd9-8bba-4bedef4dcee5" + "d1c4a152-9da7-48da-ab1e-2adca227e382" ], "x-ms-correlation-request-id": [ - "3c06ca26-decd-4fd9-8bba-4bedef4dcee5" + "d1c4a152-9da7-48da-ab1e-2adca227e382" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112207Z:3c06ca26-decd-4fd9-8bba-4bedef4dcee5" + "WESTUS2:20221017T194243Z:d1c4a152-9da7-48da-ab1e-2adca227e382" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -107,35 +104,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "13832" + "Date": [ + "Mon, 17 Oct 2022 19:42:43 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "14731" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateLinkResources\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateLinkResources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise/databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/EventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"France South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Qatar Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateLinkResources\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateLinkResources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise/databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/EventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/RedisSchedules5775?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlZ3JvdXBzL1JlZGlzU2NoZWR1bGVzNTc3NT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/RedisSchedules8200?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlZ3JvdXBzL1JlZGlzU2NoZWR1bGVzODIwMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c2d10cba-3827-4da0-8267-34d03d72dd9e" + "6ea7c9a6-b7eb-43db-b7ab-26aa333040d0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", + "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ @@ -149,23 +149,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:22:07 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1198" ], "x-ms-request-id": [ - "c7fa9981-e845-4f91-a157-f099d62b4cb7" + "b77b4c97-7b66-44c0-bf40-cc75e5682cc8" ], "x-ms-correlation-request-id": [ - "c7fa9981-e845-4f91-a157-f099d62b4cb7" + "b77b4c97-7b66-44c0-bf40-cc75e5682cc8" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112208Z:c7fa9981-e845-4f91-a157-f099d62b4cb7" + "WESTUS2:20221017T194244Z:b77b4c97-7b66-44c0-bf40-cc75e5682cc8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -173,6 +170,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Mon, 17 Oct 2022 19:42:44 GMT" + ], "Content-Length": [ "189" ], @@ -183,25 +183,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisSchedules5775\",\r\n \"name\": \"RedisSchedules5775\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisSchedules8200\",\r\n \"name\": \"RedisSchedules8200\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/RedisSchedules5775?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlZ3JvdXBzL1JlZGlzU2NoZWR1bGVzNTc3NT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/RedisSchedules8200?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlZ3JvdXBzL1JlZGlzU2NoZWR1bGVzODIwMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "657be6b6-1c45-4447-a622-6ad358d07e36" + "c65cb5c6-daa6-41db-a9c2-82654ad7ecb6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", + "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -209,23 +209,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:22:07 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11996" ], "x-ms-request-id": [ - "1689e229-b654-4386-a9ed-3e0d22c1f304" + "d68682c9-b755-4787-8469-3baf34b3ca1e" ], "x-ms-correlation-request-id": [ - "1689e229-b654-4386-a9ed-3e0d22c1f304" + "d68682c9-b755-4787-8469-3baf34b3ca1e" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112208Z:1689e229-b654-4386-a9ed-3e0d22c1f304" + "WESTUS2:20221017T194244Z:d68682c9-b755-4787-8469-3baf34b3ca1e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -233,36 +230,39 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "189" + "Date": [ + "Mon, 17 Oct 2022 19:42:44 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "189" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisSchedules5775\",\r\n \"name\": \"RedisSchedules5775\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisSchedules8200\",\r\n \"name\": \"RedisSchedules8200\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisSchedules5775/providers/Microsoft.Cache/redis/RedisSchedules1781?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzU2NoZWR1bGVzNTc3NS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzU2NoZWR1bGVzMTc4MT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisSchedules8200/providers/Microsoft.Cache/redis/RedisSchedules3653?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzU2NoZWR1bGVzODIwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzU2NoZWR1bGVzMzY1Mz9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "48f6a999-67a0-43c7-b227-acdf06a1a2f4" + "641d459d-3c6a-4fb7-8162-63fff395d14d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -275,26 +275,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:22:13 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisSchedules5775/providers/Microsoft.Cache/redis/RedisSchedules1781?api-version=2021-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisSchedules8200/providers/Microsoft.Cache/redis/RedisSchedules3653?api-version=2022-06-01" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01" ], "x-ms-request-id": [ - "dbe2a458-942f-4437-b69d-2147076231e7" + "83dc752a-6f08-4fc9-882a-833c25db73cd" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -302,17 +296,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1196" ], "x-ms-correlation-request-id": [ - "ceb70c68-62fd-49b9-ade8-e646c4859f46" + "039bb5ba-16fe-40a2-a32f-8bbaa820b024" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112213Z:ceb70c68-62fd-49b9-ade8-e646c4859f46" + "WESTUS2:20221017T194246Z:039bb5ba-16fe-40a2-a32f-8bbaa820b024" + ], + "Date": [ + "Mon, 17 Oct 2022 19:42:45 GMT" ], "Content-Length": [ - "1229" + "1226" ], "Content-Type": [ "application/json; charset=utf-8" @@ -321,43 +321,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisSchedules5775/providers/Microsoft.Cache/Redis/RedisSchedules1781\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisSchedules1781\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"*****\",\r\n \"secondaryKey\": \"******\"\r\n },\r\n \"hostName\": \"RedisSchedules1781.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisSchedules8200/providers/Microsoft.Cache/Redis/RedisSchedules3653\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisSchedules3653\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\"\r\n },\r\n \"hostName\": \"RedisSchedules3653.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvZGJlMmE0NTgtOTQyZi00NDM3LWI2OWQtMjE0NzA3NjIzMWU3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODNkYzc1MmEtNmYwOC00ZmM5LTg4MmEtODMzYzI1ZGI3M2NkP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:22:43 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01" ], "x-ms-request-id": [ - "25e36f5a-d9dd-45bd-ac66-bc52ae46e082" + "c5595ad2-c44d-4a3a-ad8b-fe06a8927a59" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -365,77 +359,20 @@ "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" - ], - "x-ms-correlation-request-id": [ - "dba926f5-1076-4cec-9a3d-5a07ae396fe5" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112243Z:dba926f5-1076-4cec-9a3d-5a07ae396fe5" - ], - "Content-Length": [ - "353" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"name\": \"dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvZGJlMmE0NTgtOTQyZi00NDM3LWI2OWQtMjE0NzA3NjIzMWU3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 26 Nov 2021 11:23:13 GMT" - ], - "Pragma": [ - "no-cache" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "dc1a93d2-5977-4b29-95c2-011fb2081b60" - ], - "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11888" ], "x-ms-correlation-request-id": [ - "22bb3379-5fa2-40fd-a916-b857cc82e050" + "f539b062-fbb3-4f66-a3da-7887822ba263" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112314Z:22bb3379-5fa2-40fd-a916-b857cc82e050" + "WESTUS2:20221017T194316Z:f539b062-fbb3-4f66-a3da-7887822ba263" + ], + "Date": [ + "Mon, 17 Oct 2022 19:43:16 GMT" ], "Content-Length": [ "353" @@ -447,43 +384,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"name\": \"dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd\",\r\n \"name\": \"83dc752a-6f08-4fc9-882a-833c25db73cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvZGJlMmE0NTgtOTQyZi00NDM3LWI2OWQtMjE0NzA3NjIzMWU3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODNkYzc1MmEtNmYwOC00ZmM5LTg4MmEtODMzYzI1ZGI3M2NkP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:23:44 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01" ], "x-ms-request-id": [ - "764d0d90-e3b2-4be6-bdbd-c593f2eb3378" + "66707579-2a8c-4747-9376-7dfc7861430a" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -491,77 +422,20 @@ "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" - ], - "x-ms-correlation-request-id": [ - "dbb8c346-0a9a-46d7-8a8a-e15d88763596" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112344Z:dbb8c346-0a9a-46d7-8a8a-e15d88763596" - ], - "Content-Length": [ - "353" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"name\": \"dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvZGJlMmE0NTgtOTQyZi00NDM3LWI2OWQtMjE0NzA3NjIzMWU3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 26 Nov 2021 11:24:14 GMT" - ], - "Pragma": [ - "no-cache" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "56b88f1c-d73e-4b0f-a9cb-0bef70e090d2" - ], - "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11887" ], "x-ms-correlation-request-id": [ - "f4294ab2-f7f4-4c18-998a-8cb42a3932b1" + "90a0c327-f38b-438a-866e-a2c6ee75cf8a" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112414Z:f4294ab2-f7f4-4c18-998a-8cb42a3932b1" + "WESTUS2:20221017T194346Z:90a0c327-f38b-438a-866e-a2c6ee75cf8a" + ], + "Date": [ + "Mon, 17 Oct 2022 19:43:45 GMT" ], "Content-Length": [ "353" @@ -573,43 +447,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"name\": \"dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd\",\r\n \"name\": \"83dc752a-6f08-4fc9-882a-833c25db73cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvZGJlMmE0NTgtOTQyZi00NDM3LWI2OWQtMjE0NzA3NjIzMWU3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODNkYzc1MmEtNmYwOC00ZmM5LTg4MmEtODMzYzI1ZGI3M2NkP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:24:44 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01" ], "x-ms-request-id": [ - "4e73c5df-1ae5-4099-8983-1c0bbca15899" + "61cccb97-dc0b-4f9e-a2c1-6c94ce7eca10" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -617,77 +485,20 @@ "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" - ], - "x-ms-correlation-request-id": [ - "7b77344e-4089-4097-bf9c-b023862caca4" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112445Z:7b77344e-4089-4097-bf9c-b023862caca4" - ], - "Content-Length": [ - "353" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"name\": \"dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvZGJlMmE0NTgtOTQyZi00NDM3LWI2OWQtMjE0NzA3NjIzMWU3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 26 Nov 2021 11:25:14 GMT" - ], - "Pragma": [ - "no-cache" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "a81a232a-4081-4bc8-8f71-03ce492be166" - ], - "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "11886" ], "x-ms-correlation-request-id": [ - "a0d6daf1-69a9-41c4-ae92-21a66e864685" + "a995dea7-7e8f-4978-bacb-d8b2c56a4cf2" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112515Z:a0d6daf1-69a9-41c4-ae92-21a66e864685" + "WESTUS2:20221017T194416Z:a995dea7-7e8f-4978-bacb-d8b2c56a4cf2" + ], + "Date": [ + "Mon, 17 Oct 2022 19:44:15 GMT" ], "Content-Length": [ "353" @@ -699,43 +510,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"name\": \"dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd\",\r\n \"name\": \"83dc752a-6f08-4fc9-882a-833c25db73cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvZGJlMmE0NTgtOTQyZi00NDM3LWI2OWQtMjE0NzA3NjIzMWU3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODNkYzc1MmEtNmYwOC00ZmM5LTg4MmEtODMzYzI1ZGI3M2NkP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:25:45 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01" ], "x-ms-request-id": [ - "8ebabc2c-9251-497f-9ac2-7915141b8516" + "963f4337-19a2-4d77-9137-c2ea33dc6ee8" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -743,14 +548,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" + "11885" ], "x-ms-correlation-request-id": [ - "a6f7728c-583d-4ec4-af34-5a44fcbef1df" + "d226246e-a067-4cf2-bc66-8c4d26038ea4" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112545Z:a6f7728c-583d-4ec4-af34-5a44fcbef1df" + "WESTUS2:20221017T194446Z:d226246e-a067-4cf2-bc66-8c4d26038ea4" + ], + "Date": [ + "Mon, 17 Oct 2022 19:44:46 GMT" ], "Content-Length": [ "353" @@ -762,43 +573,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"name\": \"dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd\",\r\n \"name\": \"83dc752a-6f08-4fc9-882a-833c25db73cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvZGJlMmE0NTgtOTQyZi00NDM3LWI2OWQtMjE0NzA3NjIzMWU3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODNkYzc1MmEtNmYwOC00ZmM5LTg4MmEtODMzYzI1ZGI3M2NkP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:26:15 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01" ], "x-ms-request-id": [ - "e738d2ca-ed68-413a-afce-eb2c6c5c278f" + "2c39fbcb-ba8b-4222-a12f-239f9360286a" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -806,14 +611,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" + "11884" ], "x-ms-correlation-request-id": [ - "c5a36b16-c2e4-4a47-a372-d1df9844d486" + "b49291b4-3609-48bf-b77a-6791d67f0c29" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112616Z:c5a36b16-c2e4-4a47-a372-d1df9844d486" + "WESTUS2:20221017T194516Z:b49291b4-3609-48bf-b77a-6791d67f0c29" + ], + "Date": [ + "Mon, 17 Oct 2022 19:45:16 GMT" ], "Content-Length": [ "353" @@ -825,43 +636,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"name\": \"dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd\",\r\n \"name\": \"83dc752a-6f08-4fc9-882a-833c25db73cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvZGJlMmE0NTgtOTQyZi00NDM3LWI2OWQtMjE0NzA3NjIzMWU3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODNkYzc1MmEtNmYwOC00ZmM5LTg4MmEtODMzYzI1ZGI3M2NkP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:26:46 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01" ], "x-ms-request-id": [ - "71f36ada-0aef-4466-bc03-40ea8ded6989" + "3834cfe7-4926-4df0-a040-8bed57eefd27" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -869,14 +674,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" + "11883" ], "x-ms-correlation-request-id": [ - "7377913e-6cfd-4b0c-99f7-5e7f10f31ec9" + "02c2d4e5-4721-43bb-abb1-e485e95b0dcb" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112646Z:7377913e-6cfd-4b0c-99f7-5e7f10f31ec9" + "WESTUS2:20221017T194546Z:02c2d4e5-4721-43bb-abb1-e485e95b0dcb" + ], + "Date": [ + "Mon, 17 Oct 2022 19:45:46 GMT" ], "Content-Length": [ "353" @@ -888,43 +699,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"name\": \"dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd\",\r\n \"name\": \"83dc752a-6f08-4fc9-882a-833c25db73cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvZGJlMmE0NTgtOTQyZi00NDM3LWI2OWQtMjE0NzA3NjIzMWU3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODNkYzc1MmEtNmYwOC00ZmM5LTg4MmEtODMzYzI1ZGI3M2NkP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:27:16 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01" ], "x-ms-request-id": [ - "02df4088-c054-4a61-b257-67f72603a7d0" + "5fbd48cc-7e34-42ca-9384-89206a81f135" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -932,14 +737,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11942" + "11882" ], "x-ms-correlation-request-id": [ - "5df866ec-b9f9-43db-87de-88b6762f99c5" + "a4fff731-1f20-4725-b77a-a801ab95c66e" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112716Z:5df866ec-b9f9-43db-87de-88b6762f99c5" + "WESTUS2:20221017T194616Z:a4fff731-1f20-4725-b77a-a801ab95c66e" + ], + "Date": [ + "Mon, 17 Oct 2022 19:46:16 GMT" ], "Content-Length": [ "353" @@ -951,43 +762,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"name\": \"dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd\",\r\n \"name\": \"83dc752a-6f08-4fc9-882a-833c25db73cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvZGJlMmE0NTgtOTQyZi00NDM3LWI2OWQtMjE0NzA3NjIzMWU3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODNkYzc1MmEtNmYwOC00ZmM5LTg4MmEtODMzYzI1ZGI3M2NkP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:27:47 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01" ], "x-ms-request-id": [ - "f1081858-a29a-4146-a035-6c69fe4e8372" + "a17a55b3-2da4-4cb5-aa4f-fd83e503c211" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -995,14 +800,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11939" + "11881" ], "x-ms-correlation-request-id": [ - "a6eb37ab-6d58-4418-9675-c9f12a9f138a" + "a4ca2801-5aa9-4c74-8d95-91174ec6fbb9" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112747Z:a6eb37ab-6d58-4418-9675-c9f12a9f138a" + "WESTUS2:20221017T194646Z:a4ca2801-5aa9-4c74-8d95-91174ec6fbb9" + ], + "Date": [ + "Mon, 17 Oct 2022 19:46:45 GMT" ], "Content-Length": [ "353" @@ -1014,43 +825,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"name\": \"dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd\",\r\n \"name\": \"83dc752a-6f08-4fc9-882a-833c25db73cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvZGJlMmE0NTgtOTQyZi00NDM3LWI2OWQtMjE0NzA3NjIzMWU3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODNkYzc1MmEtNmYwOC00ZmM5LTg4MmEtODMzYzI1ZGI3M2NkP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:28:17 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01" ], "x-ms-request-id": [ - "c0ad5f5c-14e4-4a7b-a3b9-221a4a753902" + "85efa4c9-89cf-4197-a6e1-671d4c456dac" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1058,14 +863,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11936" + "11880" ], "x-ms-correlation-request-id": [ - "db688e5c-f14b-443d-9eed-fd80f48b9fbf" + "e44f1e3d-182e-411a-8526-460bb1246991" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112817Z:db688e5c-f14b-443d-9eed-fd80f48b9fbf" + "WESTUS2:20221017T194716Z:e44f1e3d-182e-411a-8526-460bb1246991" + ], + "Date": [ + "Mon, 17 Oct 2022 19:47:16 GMT" ], "Content-Length": [ "353" @@ -1077,43 +888,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"name\": \"dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd\",\r\n \"name\": \"83dc752a-6f08-4fc9-882a-833c25db73cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvZGJlMmE0NTgtOTQyZi00NDM3LWI2OWQtMjE0NzA3NjIzMWU3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODNkYzc1MmEtNmYwOC00ZmM5LTg4MmEtODMzYzI1ZGI3M2NkP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:28:47 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01" ], "x-ms-request-id": [ - "c2a9d823-8959-4c00-87a3-70aa2080bd31" + "85d93e81-4353-4ff6-962b-4bc370195231" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1122,13 +927,19 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11933" + "11879" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "97ab3674-e30d-4e5d-b98d-e3b5adf969c4" + "ca15c717-db88-4427-a20c-b258cbead963" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112847Z:97ab3674-e30d-4e5d-b98d-e3b5adf969c4" + "WESTUS2:20221017T194746Z:ca15c717-db88-4427-a20c-b258cbead963" + ], + "Date": [ + "Mon, 17 Oct 2022 19:47:46 GMT" ], "Content-Length": [ "353" @@ -1140,43 +951,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"name\": \"dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd\",\r\n \"name\": \"83dc752a-6f08-4fc9-882a-833c25db73cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvZGJlMmE0NTgtOTQyZi00NDM3LWI2OWQtMjE0NzA3NjIzMWU3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODNkYzc1MmEtNmYwOC00ZmM5LTg4MmEtODMzYzI1ZGI3M2NkP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:29:17 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01" ], "x-ms-request-id": [ - "6667340b-b598-4eb9-a9ca-64ebc831e504" + "e4c9a305-eab7-4a6b-9bae-f0c3f8dd9e22" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1184,14 +989,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11930" + "11878" ], "x-ms-correlation-request-id": [ - "7539f85a-9bf4-4af1-bb24-f550ffcce9f7" + "438ad779-6a89-4bcc-892a-4108771cc9bf" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112918Z:7539f85a-9bf4-4af1-bb24-f550ffcce9f7" + "WESTUS2:20221017T194817Z:438ad779-6a89-4bcc-892a-4108771cc9bf" + ], + "Date": [ + "Mon, 17 Oct 2022 19:48:16 GMT" ], "Content-Length": [ "353" @@ -1203,43 +1014,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"name\": \"dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd\",\r\n \"name\": \"83dc752a-6f08-4fc9-882a-833c25db73cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvZGJlMmE0NTgtOTQyZi00NDM3LWI2OWQtMjE0NzA3NjIzMWU3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODNkYzc1MmEtNmYwOC00ZmM5LTg4MmEtODMzYzI1ZGI3M2NkP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:29:48 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01" ], "x-ms-request-id": [ - "351f407f-a3ed-486a-a742-837324236582" + "ee33ae6a-1906-4702-87cb-067c63d02c84" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1247,14 +1052,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11927" + "11877" ], "x-ms-correlation-request-id": [ - "b18d7150-5d8e-4ede-9b9c-9e126593de28" + "ace6b5d0-4133-45e6-88df-2fc174cdbe40" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112948Z:b18d7150-5d8e-4ede-9b9c-9e126593de28" + "WESTUS2:20221017T194847Z:ace6b5d0-4133-45e6-88df-2fc174cdbe40" + ], + "Date": [ + "Mon, 17 Oct 2022 19:48:46 GMT" ], "Content-Length": [ "353" @@ -1266,43 +1077,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"name\": \"dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd\",\r\n \"name\": \"83dc752a-6f08-4fc9-882a-833c25db73cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvZGJlMmE0NTgtOTQyZi00NDM3LWI2OWQtMjE0NzA3NjIzMWU3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODNkYzc1MmEtNmYwOC00ZmM5LTg4MmEtODMzYzI1ZGI3M2NkP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:30:18 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01" ], "x-ms-request-id": [ - "6be1225c-fd27-4c10-aa0e-1656fa8d12e6" + "ae1b5711-43a1-4937-a7a6-b68f40bb5347" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1310,14 +1115,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11924" + "11876" ], "x-ms-correlation-request-id": [ - "f999f145-0008-4466-8234-94f5456849b6" + "f31a7373-78c9-44e0-b75b-8d0ffa509ebf" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113018Z:f999f145-0008-4466-8234-94f5456849b6" + "WESTUS2:20221017T194917Z:f31a7373-78c9-44e0-b75b-8d0ffa509ebf" + ], + "Date": [ + "Mon, 17 Oct 2022 19:49:16 GMT" ], "Content-Length": [ "353" @@ -1329,43 +1140,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"name\": \"dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd\",\r\n \"name\": \"83dc752a-6f08-4fc9-882a-833c25db73cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvZGJlMmE0NTgtOTQyZi00NDM3LWI2OWQtMjE0NzA3NjIzMWU3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODNkYzc1MmEtNmYwOC00ZmM5LTg4MmEtODMzYzI1ZGI3M2NkP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:30:49 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01" ], "x-ms-request-id": [ - "20e821e3-7c54-4b92-871f-17cb2ed89529" + "38cbb4b4-f53a-4b5d-8db1-d6e640fd0f3f" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1373,14 +1178,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11921" + "11875" ], "x-ms-correlation-request-id": [ - "55436fdd-5636-4e00-8767-0e76dea8bacd" + "a917cf0e-baf9-404d-acdd-733ec9fe925f" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113049Z:55436fdd-5636-4e00-8767-0e76dea8bacd" + "WESTUS2:20221017T194947Z:a917cf0e-baf9-404d-acdd-733ec9fe925f" + ], + "Date": [ + "Mon, 17 Oct 2022 19:49:47 GMT" ], "Content-Length": [ "353" @@ -1392,43 +1203,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"name\": \"dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd\",\r\n \"name\": \"83dc752a-6f08-4fc9-882a-833c25db73cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvZGJlMmE0NTgtOTQyZi00NDM3LWI2OWQtMjE0NzA3NjIzMWU3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODNkYzc1MmEtNmYwOC00ZmM5LTg4MmEtODMzYzI1ZGI3M2NkP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:31:18 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01" ], "x-ms-request-id": [ - "3031c06a-eb3d-40f1-a97d-57653a8199b3" + "ccbb516b-a171-4fb3-be52-8bb87d94e38c" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1436,14 +1241,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11918" + "11874" ], "x-ms-correlation-request-id": [ - "926324fe-a6d5-422c-b3a1-48ed1e99deeb" + "f1cb91fa-b602-4c15-9b19-e97f4b732630" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113119Z:926324fe-a6d5-422c-b3a1-48ed1e99deeb" + "WESTUS2:20221017T195017Z:f1cb91fa-b602-4c15-9b19-e97f4b732630" + ], + "Date": [ + "Mon, 17 Oct 2022 19:50:16 GMT" ], "Content-Length": [ "353" @@ -1455,43 +1266,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"name\": \"dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd\",\r\n \"name\": \"83dc752a-6f08-4fc9-882a-833c25db73cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvZGJlMmE0NTgtOTQyZi00NDM3LWI2OWQtMjE0NzA3NjIzMWU3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODNkYzc1MmEtNmYwOC00ZmM5LTg4MmEtODMzYzI1ZGI3M2NkP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:31:49 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01" ], "x-ms-request-id": [ - "f365f73d-8a98-4558-bc0d-a1416d4787ac" + "2bdc57ab-9647-4979-8d61-1e487e47f6ed" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1499,14 +1304,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11915" + "11873" ], "x-ms-correlation-request-id": [ - "c09be53b-8c15-43fa-8a22-0bf2b67e12e3" + "abb36989-d230-496c-90ba-883c5c9ffe9f" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113149Z:c09be53b-8c15-43fa-8a22-0bf2b67e12e3" + "WESTUS2:20221017T195047Z:abb36989-d230-496c-90ba-883c5c9ffe9f" + ], + "Date": [ + "Mon, 17 Oct 2022 19:50:46 GMT" ], "Content-Length": [ "353" @@ -1518,43 +1329,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"name\": \"dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd\",\r\n \"name\": \"83dc752a-6f08-4fc9-882a-833c25db73cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvZGJlMmE0NTgtOTQyZi00NDM3LWI2OWQtMjE0NzA3NjIzMWU3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODNkYzc1MmEtNmYwOC00ZmM5LTg4MmEtODMzYzI1ZGI3M2NkP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:32:19 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01" ], "x-ms-request-id": [ - "4694fc3e-9f72-45be-88a8-716f8ba39497" + "86c627d8-0774-43c3-a876-c1baa0a18ed7" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1562,14 +1367,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11912" + "11872" ], "x-ms-correlation-request-id": [ - "fdc1bab5-bbac-4a57-a609-45a7f041c090" + "22a476aa-bc98-4d49-a078-eafdec85fd35" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113220Z:fdc1bab5-bbac-4a57-a609-45a7f041c090" + "WESTUS2:20221017T195117Z:22a476aa-bc98-4d49-a078-eafdec85fd35" + ], + "Date": [ + "Mon, 17 Oct 2022 19:51:16 GMT" ], "Content-Length": [ "353" @@ -1581,43 +1392,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"name\": \"dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd\",\r\n \"name\": \"83dc752a-6f08-4fc9-882a-833c25db73cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvZGJlMmE0NTgtOTQyZi00NDM3LWI2OWQtMjE0NzA3NjIzMWU3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODNkYzc1MmEtNmYwOC00ZmM5LTg4MmEtODMzYzI1ZGI3M2NkP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:32:49 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01" ], "x-ms-request-id": [ - "8b7b035d-8dc1-4f5e-bdd7-3c015484b4fe" + "3a6ff1ea-55cd-4869-a98f-7405a44b50bd" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1625,14 +1430,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11909" + "11871" ], "x-ms-correlation-request-id": [ - "42805905-d484-4cef-a54e-aca98d9faee1" + "2cc4ebe0-96c6-41ea-9036-0165f5185a16" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113250Z:42805905-d484-4cef-a54e-aca98d9faee1" + "WESTUS2:20221017T195147Z:2cc4ebe0-96c6-41ea-9036-0165f5185a16" + ], + "Date": [ + "Mon, 17 Oct 2022 19:51:47 GMT" ], "Content-Length": [ "353" @@ -1644,43 +1455,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"name\": \"dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd\",\r\n \"name\": \"83dc752a-6f08-4fc9-882a-833c25db73cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvZGJlMmE0NTgtOTQyZi00NDM3LWI2OWQtMjE0NzA3NjIzMWU3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODNkYzc1MmEtNmYwOC00ZmM5LTg4MmEtODMzYzI1ZGI3M2NkP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:33:19 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01" ], "x-ms-request-id": [ - "8142e7a0-0440-4bb5-9351-f2262b6d925b" + "b4d4d802-f5e4-49a0-b39d-fac741114fef" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1688,14 +1493,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11906" + "11870" ], "x-ms-correlation-request-id": [ - "9a864614-6921-49d8-a09f-b0045b840105" + "bfa5baf0-2753-4060-b35d-1ff41d95f0b1" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113320Z:9a864614-6921-49d8-a09f-b0045b840105" + "WESTUS2:20221017T195217Z:bfa5baf0-2753-4060-b35d-1ff41d95f0b1" + ], + "Date": [ + "Mon, 17 Oct 2022 19:52:17 GMT" ], "Content-Length": [ "353" @@ -1707,43 +1518,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"name\": \"dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd\",\r\n \"name\": \"83dc752a-6f08-4fc9-882a-833c25db73cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvZGJlMmE0NTgtOTQyZi00NDM3LWI2OWQtMjE0NzA3NjIzMWU3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODNkYzc1MmEtNmYwOC00ZmM5LTg4MmEtODMzYzI1ZGI3M2NkP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:33:50 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01" ], "x-ms-request-id": [ - "25aa41d3-e67e-49ea-a387-691e288c6070" + "823a0fad-ab84-4a2b-bf51-47817ab9b79a" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1751,14 +1556,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11903" + "11869" ], "x-ms-correlation-request-id": [ - "2d888675-224f-4126-ab6b-cf08c51ddb76" + "df6e582b-5990-45e6-8a69-551c2480dd93" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113351Z:2d888675-224f-4126-ab6b-cf08c51ddb76" + "WESTUS2:20221017T195247Z:df6e582b-5990-45e6-8a69-551c2480dd93" + ], + "Date": [ + "Mon, 17 Oct 2022 19:52:46 GMT" ], "Content-Length": [ "353" @@ -1770,43 +1581,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"name\": \"dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd\",\r\n \"name\": \"83dc752a-6f08-4fc9-882a-833c25db73cd\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvZGJlMmE0NTgtOTQyZi00NDM3LWI2OWQtMjE0NzA3NjIzMWU3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvODNkYzc1MmEtNmYwOC00ZmM5LTg4MmEtODMzYzI1ZGI3M2NkP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:34:21 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd?api-version=2022-06-01" ], "x-ms-request-id": [ - "bddcd96f-7cb3-44b8-a8a4-3ec64c6a47bf" + "c19ce9d3-41ff-4932-aed3-6049e005c9e9" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1815,13 +1620,19 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11900" + "11868" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "7bce0e2b-a42d-47f5-8433-661e042f83d0" + "f4b5241c-61e2-4eb6-8742-c3726ef01069" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113421Z:7bce0e2b-a42d-47f5-8433-661e042f83d0" + "WESTUS2:20221017T195317Z:f4b5241c-61e2-4eb6-8742-c3726ef01069" + ], + "Date": [ + "Mon, 17 Oct 2022 19:53:16 GMT" ], "Content-Length": [ "352" @@ -1833,40 +1644,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"name\": \"dbe2a458-942f-4437-b69d-2147076231e7\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/83dc752a-6f08-4fc9-882a-833c25db73cd\",\r\n \"name\": \"83dc752a-6f08-4fc9-882a-833c25db73cd\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisSchedules5775/providers/Microsoft.Cache/redis/RedisSchedules1781?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzU2NoZWR1bGVzNTc3NS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzU2NoZWR1bGVzMTc4MT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisSchedules8200/providers/Microsoft.Cache/redis/RedisSchedules3653?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzU2NoZWR1bGVzODIwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzU2NoZWR1bGVzMzY1Mz9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:34:22 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "40ab57a1-2e60-4b53-9669-3557b8441184" + "d965db89-66d7-4fa1-a124-b2db54bf66fb" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1875,16 +1680,22 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11899" + "11867" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "5ebc7f66-136f-4f4b-a7d0-2916b0a54282" + "4636ab46-d9f4-49c7-bc43-8943ffae4e54" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113422Z:5ebc7f66-136f-4f4b-a7d0-2916b0a54282" + "WESTUS2:20221017T195317Z:4636ab46-d9f4-49c7-bc43-8943ffae4e54" + ], + "Date": [ + "Mon, 17 Oct 2022 19:53:16 GMT" ], "Content-Length": [ - "786" + "783" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1893,46 +1704,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisSchedules5775/providers/Microsoft.Cache/Redis/RedisSchedules1781\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisSchedules1781\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisSchedules1781.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisSchedules8200/providers/Microsoft.Cache/Redis/RedisSchedules3653\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisSchedules3653\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisSchedules3653.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisSchedules5775/providers/Microsoft.Cache/redis/RedisSchedules1781?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzU2NoZWR1bGVzNTc3NS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzU2NoZWR1bGVzMTc4MT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisSchedules8200/providers/Microsoft.Cache/redis/RedisSchedules3653?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzU2NoZWR1bGVzODIwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzU2NoZWR1bGVzMzY1Mz9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "56594a59-88de-43bd-8998-167cb0d6a4d7" + "295d0185-3c6a-427c-8a5e-ee4cfd8f3812" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:34:22 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "6685bc8b-2d53-4e21-9af6-2c7e48652974" + "60e56893-dd2f-40de-b007-ee11c7e7453f" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1940,17 +1745,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11898" + "11866" ], "x-ms-correlation-request-id": [ - "0043397f-0765-4a56-82dc-a5f6f978e8d9" + "ad1a68f8-eda4-4cbf-b050-803452a9b808" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113422Z:0043397f-0765-4a56-82dc-a5f6f978e8d9" + "WESTUS2:20221017T195318Z:ad1a68f8-eda4-4cbf-b050-803452a9b808" + ], + "Date": [ + "Mon, 17 Oct 2022 19:53:18 GMT" ], "Content-Length": [ - "786" + "783" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1959,26 +1770,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisSchedules5775/providers/Microsoft.Cache/Redis/RedisSchedules1781\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisSchedules1781\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisSchedules1781.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisSchedules8200/providers/Microsoft.Cache/Redis/RedisSchedules3653\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisSchedules3653\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisSchedules3653.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisSchedules5775/providers/Microsoft.Cache/redis/RedisSchedules1781/patchSchedules/default?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzU2NoZWR1bGVzNTc3NS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzU2NoZWR1bGVzMTc4MS9wYXRjaFNjaGVkdWxlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisSchedules8200/providers/Microsoft.Cache/redis/RedisSchedules3653/patchSchedules/default?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzU2NoZWR1bGVzODIwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzU2NoZWR1bGVzMzY1My9wYXRjaFNjaGVkdWxlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"scheduleEntries\": [\r\n {\r\n \"dayOfWeek\": \"Monday\",\r\n \"startHourUtc\": 10,\r\n \"maintenanceWindow\": \"PT10H\"\r\n },\r\n {\r\n \"dayOfWeek\": \"Tuesday\",\r\n \"startHourUtc\": 11,\r\n \"maintenanceWindow\": \"PT11H\"\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "01a61b05-f1a6-4d5a-ba96-10eb63bebe75" + "b3e19d59-bb06-462e-969a-7f58cb5c317d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1991,20 +1802,14 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:34:23 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "1b087640-ae46-4268-9e02-0be60665df42" + "cfe3955c-997f-42d8-a168-80ca16b867e1" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2012,14 +1817,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1195" ], "x-ms-correlation-request-id": [ - "c2aef3eb-8963-40e9-aca2-01460e42cc62" + "b45b76dd-f9be-4576-827a-0ca8f95c1b50" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113423Z:c2aef3eb-8963-40e9-aca2-01460e42cc62" + "WESTUS2:20221017T195318Z:b45b76dd-f9be-4576-827a-0ca8f95c1b50" + ], + "Date": [ + "Mon, 17 Oct 2022 19:53:18 GMT" ], "Content-Length": [ "445" @@ -2031,46 +1842,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisSchedules5775/providers/Microsoft.Cache/Redis/RedisSchedules1781/patchSchedules/default\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisSchedules1781/default\",\r\n \"type\": \"Microsoft.Cache/Redis/PatchSchedules\",\r\n \"properties\": {\r\n \"scheduleEntries\": [\r\n {\r\n \"dayOfWeek\": \"Monday\",\r\n \"startHourUtc\": 10,\r\n \"maintenanceWindow\": \"PT10H\"\r\n },\r\n {\r\n \"dayOfWeek\": \"Tuesday\",\r\n \"startHourUtc\": 11,\r\n \"maintenanceWindow\": \"PT11H\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisSchedules8200/providers/Microsoft.Cache/Redis/RedisSchedules3653/patchSchedules/default\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisSchedules3653/default\",\r\n \"type\": \"Microsoft.Cache/Redis/PatchSchedules\",\r\n \"properties\": {\r\n \"scheduleEntries\": [\r\n {\r\n \"dayOfWeek\": \"Monday\",\r\n \"startHourUtc\": 10,\r\n \"maintenanceWindow\": \"PT10H\"\r\n },\r\n {\r\n \"dayOfWeek\": \"Tuesday\",\r\n \"startHourUtc\": 11,\r\n \"maintenanceWindow\": \"PT11H\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisSchedules5775/providers/Microsoft.Cache/redis/RedisSchedules1781/patchSchedules/default?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzU2NoZWR1bGVzNTc3NS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzU2NoZWR1bGVzMTc4MS9wYXRjaFNjaGVkdWxlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisSchedules8200/providers/Microsoft.Cache/redis/RedisSchedules3653/patchSchedules/default?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzU2NoZWR1bGVzODIwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzU2NoZWR1bGVzMzY1My9wYXRjaFNjaGVkdWxlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "477a0cc8-5741-401b-a211-6c52e3cab7c6" + "a8a95a8b-7ba6-439b-a9c9-b6385f6df8b3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:34:23 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "be5b85e5-3d9e-40c4-8c20-6b2d9fa56982" + "c9d991e0-f5bb-4b25-97fe-2401f7c9356c" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2078,14 +1883,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11897" + "11865" ], "x-ms-correlation-request-id": [ - "00474dab-f54b-454f-b5e1-c6af5b9b2b7c" + "7d61641b-d9e5-4976-848e-75088e1ad8d1" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113423Z:00474dab-f54b-454f-b5e1-c6af5b9b2b7c" + "WESTUS2:20221017T195318Z:7d61641b-d9e5-4976-848e-75088e1ad8d1" + ], + "Date": [ + "Mon, 17 Oct 2022 19:53:18 GMT" ], "Content-Length": [ "445" @@ -2097,46 +1908,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisSchedules5775/providers/Microsoft.Cache/Redis/RedisSchedules1781/patchSchedules/default\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisSchedules1781/default\",\r\n \"type\": \"Microsoft.Cache/Redis/PatchSchedules\",\r\n \"properties\": {\r\n \"scheduleEntries\": [\r\n {\r\n \"dayOfWeek\": \"Monday\",\r\n \"startHourUtc\": 10,\r\n \"maintenanceWindow\": \"PT10H\"\r\n },\r\n {\r\n \"dayOfWeek\": \"Tuesday\",\r\n \"startHourUtc\": 11,\r\n \"maintenanceWindow\": \"PT11H\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisSchedules8200/providers/Microsoft.Cache/Redis/RedisSchedules3653/patchSchedules/default\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisSchedules3653/default\",\r\n \"type\": \"Microsoft.Cache/Redis/PatchSchedules\",\r\n \"properties\": {\r\n \"scheduleEntries\": [\r\n {\r\n \"dayOfWeek\": \"Monday\",\r\n \"startHourUtc\": 10,\r\n \"maintenanceWindow\": \"PT10H\"\r\n },\r\n {\r\n \"dayOfWeek\": \"Tuesday\",\r\n \"startHourUtc\": 11,\r\n \"maintenanceWindow\": \"PT11H\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisSchedules5775/providers/Microsoft.Cache/redis/RedisSchedules1781/patchSchedules/default?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzU2NoZWR1bGVzNTc3NS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzU2NoZWR1bGVzMTc4MS9wYXRjaFNjaGVkdWxlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisSchedules8200/providers/Microsoft.Cache/redis/RedisSchedules3653/patchSchedules/default?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzU2NoZWR1bGVzODIwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzU2NoZWR1bGVzMzY1My9wYXRjaFNjaGVkdWxlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8db435fa-7039-41f0-a69a-af5792a89563" + "eaad9775-2b56-4395-b0b7-dbe05355ad71" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:34:24 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "acaef75a-603b-4264-b662-88d251d35456" + "42a03b82-023c-4320-a074-3c819fa519df" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2144,14 +1949,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11896" + "11864" ], "x-ms-correlation-request-id": [ - "2ba72299-a8b8-4833-ae5f-2068fef7929b" + "617eaef3-eca6-456f-9720-e59b9d7f915d" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113424Z:2ba72299-a8b8-4833-ae5f-2068fef7929b" + "WESTUS2:20221017T195318Z:617eaef3-eca6-456f-9720-e59b9d7f915d" + ], + "Date": [ + "Mon, 17 Oct 2022 19:53:18 GMT" ], "Content-Length": [ "186" @@ -2163,46 +1974,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"There are no patch schedules found for redis cache 'RedisSchedules1781'.\\r\\nRequestID=acaef75a-603b-4264-b662-88d251d35456\",\r\n \"target\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"There are no patch schedules found for redis cache 'RedisSchedules3653'.\\r\\nRequestID=42a03b82-023c-4320-a074-3c819fa519df\",\r\n \"target\": null\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisSchedules5775/providers/Microsoft.Cache/redis/RedisSchedules1781/patchSchedules/default?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzU2NoZWR1bGVzNTc3NS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzU2NoZWR1bGVzMTc4MS9wYXRjaFNjaGVkdWxlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisSchedules8200/providers/Microsoft.Cache/redis/RedisSchedules3653/patchSchedules/default?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzU2NoZWR1bGVzODIwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzU2NoZWR1bGVzMzY1My9wYXRjaFNjaGVkdWxlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99091493-5021-4c76-9f9c-e3b5560c8327" + "4bcd2276-3ea4-498c-9786-71ac1b30e07e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:34:23 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "42dc1062-c1ab-4bad-b7f7-81c417eb2172" + "78e38a58-27bc-41ec-8f84-8c42e7c159b5" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2210,20 +2015,26 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14996" ], "x-ms-correlation-request-id": [ - "9bd6ed62-4a0d-4ecc-a365-b10bda8477b1" + "a6d3c1e8-6377-44fa-be5d-d86643fef813" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113424Z:9bd6ed62-4a0d-4ecc-a365-b10bda8477b1" + "WESTUS2:20221017T195318Z:a6d3c1e8-6377-44fa-be5d-d86643fef813" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 17 Oct 2022 19:53:18 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -2232,11 +2043,11 @@ ], "Names": { "PatchSchedules_PutGetDelete": [ - "RedisSchedules5775", - "RedisSchedules1781" + "RedisSchedules8200", + "RedisSchedules3653" ] }, "Variables": { - "SubscriptionId": "0ee2a145-4d40-44f4-b764-67b40274f1ac" + "SubscriptionId": "3919658b-68ae-4509-8c17-6a2238340ae7" } } \ No newline at end of file diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/RebootFunctionalTests/RebootBothNodesTest.json b/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/RebootFunctionalTests/RebootBothNodesTest.json index c5cd4515c366..3fc278b457ec 100644 --- a/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/RebootFunctionalTests/RebootBothNodesTest.json +++ b/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/RebootFunctionalTests/RebootBothNodesTest.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/register?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/register?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c430c431-e121-40ca-90a3-c51636fc9ebc" + "6dc9d0fe-c456-4440-a853-b9c4b117ad1d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", + "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:21:52 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-request-id": [ - "2229dae8-37ad-443b-8dd3-8493d0dcbbf3" + "bc9a8107-d04e-46bd-8f3f-0ca48e5f1989" ], "x-ms-correlation-request-id": [ - "2229dae8-37ad-443b-8dd3-8493d0dcbbf3" + "bc9a8107-d04e-46bd-8f3f-0ca48e5f1989" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112152Z:2229dae8-37ad-443b-8dd3-8493d0dcbbf3" + "WESTUS2:20221017T172617Z:bc9a8107-d04e-46bd-8f3f-0ca48e5f1989" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,8 +44,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Mon, 17 Oct 2022 17:26:17 GMT" + ], "Content-Length": [ - "13832" + "14731" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,25 +57,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateLinkResources\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateLinkResources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise/databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/EventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"France South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Qatar Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateLinkResources\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateLinkResources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise/databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/EventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f58b1934-8ad4-4780-9c6e-292122f51dbb" + "e2b631a2-953d-4799-94e0-9c067dae091b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", + "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -83,23 +83,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:21:52 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11999" ], "x-ms-request-id": [ - "fac148d8-5f24-4580-80e4-2ce1b3c0dfe0" + "1bd77e21-b3d2-4b6a-9906-41836a1c4e92" ], "x-ms-correlation-request-id": [ - "fac148d8-5f24-4580-80e4-2ce1b3c0dfe0" + "1bd77e21-b3d2-4b6a-9906-41836a1c4e92" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112153Z:fac148d8-5f24-4580-80e4-2ce1b3c0dfe0" + "WESTUS2:20221017T172617Z:1bd77e21-b3d2-4b6a-9906-41836a1c4e92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -107,35 +104,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "13832" + "Date": [ + "Mon, 17 Oct 2022 17:26:17 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "14731" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateLinkResources\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateLinkResources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise/databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/EventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"France South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Qatar Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateLinkResources\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateLinkResources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise/databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/EventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/RedisReboot6439?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlZ3JvdXBzL1JlZGlzUmVib290NjQzOT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/RedisReboot3795?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlZ3JvdXBzL1JlZGlzUmVib290Mzc5NT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d61e7db1-d4f8-417d-b42e-cbdb7142267a" + "21e3c295-0619-4037-bd43-4140cbdb516b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", + "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ @@ -149,23 +149,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:21:53 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1199" ], "x-ms-request-id": [ - "2aad0333-ccae-44f4-b119-a96b04753543" + "f8b0349e-b4b1-4221-894c-0af2656db178" ], "x-ms-correlation-request-id": [ - "2aad0333-ccae-44f4-b119-a96b04753543" + "f8b0349e-b4b1-4221-894c-0af2656db178" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112154Z:2aad0333-ccae-44f4-b119-a96b04753543" + "WESTUS2:20221017T172618Z:f8b0349e-b4b1-4221-894c-0af2656db178" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -173,6 +170,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Mon, 17 Oct 2022 17:26:17 GMT" + ], "Content-Length": [ "183" ], @@ -183,25 +183,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisReboot6439\",\r\n \"name\": \"RedisReboot6439\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisReboot3795\",\r\n \"name\": \"RedisReboot3795\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/RedisReboot6439?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlZ3JvdXBzL1JlZGlzUmVib290NjQzOT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/RedisReboot3795?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlZ3JvdXBzL1JlZGlzUmVib290Mzc5NT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b5970f37-74fc-401d-8004-840283ba72bd" + "4436b38f-c2bc-411e-81e6-a721d5494336" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", + "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -209,23 +209,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:21:53 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11998" ], "x-ms-request-id": [ - "8df802aa-2ca8-4964-b9ac-0b89da16d055" + "bca901bc-683c-45bf-a0c6-5ff7501e7e00" ], "x-ms-correlation-request-id": [ - "8df802aa-2ca8-4964-b9ac-0b89da16d055" + "bca901bc-683c-45bf-a0c6-5ff7501e7e00" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112154Z:8df802aa-2ca8-4964-b9ac-0b89da16d055" + "WESTUS2:20221017T172618Z:bca901bc-683c-45bf-a0c6-5ff7501e7e00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -233,36 +230,39 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "183" + "Date": [ + "Mon, 17 Oct 2022 17:26:17 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "183" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisReboot6439\",\r\n \"name\": \"RedisReboot6439\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisReboot3795\",\r\n \"name\": \"RedisReboot3795\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisReboot6439/providers/Microsoft.Cache/redis/RedisReboot6083?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzUmVib290NjQzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzUmVib290NjA4Mz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisReboot3795/providers/Microsoft.Cache/redis/RedisReboot2639?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzUmVib290Mzc5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzUmVib290MjYzOT9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b431dd8b-154a-49f5-91ac-e3e24b0b91f8" + "d7edef9e-c302-4a3c-ac12-fd44649db3e6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -275,26 +275,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:21:58 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisReboot6439/providers/Microsoft.Cache/redis/RedisReboot6083?api-version=2021-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisReboot3795/providers/Microsoft.Cache/redis/RedisReboot2639?api-version=2022-06-01" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01" ], "x-ms-request-id": [ - "8f03742c-34d3-458b-a293-41dcdd8383e1" + "6c0a32b4-2810-40a7-a08c-5f5b43436fa9" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -302,17 +296,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1199" ], "x-ms-correlation-request-id": [ - "b2573a8a-560d-4770-963b-37d93942e024" + "db43d9dd-6bfa-49c3-829f-63f9d8dc51a1" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112159Z:b2573a8a-560d-4770-963b-37d93942e024" + "WESTUS2:20221017T172621Z:db43d9dd-6bfa-49c3-829f-63f9d8dc51a1" + ], + "Date": [ + "Mon, 17 Oct 2022 17:26:21 GMT" ], "Content-Length": [ - "1217" + "1214" ], "Content-Type": [ "application/json; charset=utf-8" @@ -321,43 +321,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisReboot6439/providers/Microsoft.Cache/Redis/RedisReboot6083\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisReboot6083\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"*****\",\r\n \"secondaryKey\": \"******\"\r\n },\r\n \"hostName\": \"RedisReboot6083.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisReboot3795/providers/Microsoft.Cache/Redis/RedisReboot2639\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisReboot2639\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\"\r\n },\r\n \"hostName\": \"RedisReboot2639.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGYwMzc0MmMtMzRkMy00NThiLWEyOTMtNDFkY2RkODM4M2UxP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmMwYTMyYjQtMjgxMC00MGE3LWEwOGMtNWY1YjQzNDM2ZmE5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:22:28 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01" ], "x-ms-request-id": [ - "cc9833b7-127a-4e69-b772-6c6f0560920d" + "027d9204-68bf-4a39-b706-99848d4f1681" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -365,14 +359,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11999" ], "x-ms-correlation-request-id": [ - "0f8fdf82-ba2a-418c-8693-61c2adb44ab8" + "077de5e8-9cc2-4b35-833a-ce1869d932e8" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112229Z:0f8fdf82-ba2a-418c-8693-61c2adb44ab8" + "WESTUS2:20221017T172651Z:077de5e8-9cc2-4b35-833a-ce1869d932e8" + ], + "Date": [ + "Mon, 17 Oct 2022 17:26:51 GMT" ], "Content-Length": [ "353" @@ -384,43 +384,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"name\": \"8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"name\": \"6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGYwMzc0MmMtMzRkMy00NThiLWEyOTMtNDFkY2RkODM4M2UxP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmMwYTMyYjQtMjgxMC00MGE3LWEwOGMtNWY1YjQzNDM2ZmE5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:22:59 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01" ], "x-ms-request-id": [ - "a86a53d7-71ed-4abc-bba9-927c8e7f3ce5" + "b62f832e-647d-4faf-96bb-012620103a34" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -428,14 +422,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11998" ], "x-ms-correlation-request-id": [ - "c75991af-033e-4e49-be77-fc0fe94e6dcb" + "1751ecfe-fbab-44d2-ad99-2b6eebae0f2b" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112259Z:c75991af-033e-4e49-be77-fc0fe94e6dcb" + "WESTUS2:20221017T172721Z:1751ecfe-fbab-44d2-ad99-2b6eebae0f2b" + ], + "Date": [ + "Mon, 17 Oct 2022 17:27:21 GMT" ], "Content-Length": [ "353" @@ -447,43 +447,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"name\": \"8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"name\": \"6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGYwMzc0MmMtMzRkMy00NThiLWEyOTMtNDFkY2RkODM4M2UxP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmMwYTMyYjQtMjgxMC00MGE3LWEwOGMtNWY1YjQzNDM2ZmE5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:23:29 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01" ], "x-ms-request-id": [ - "4087226a-c362-4da0-9724-bce1b364ffb3" + "42d0f9a5-e932-4610-aa30-68ff94bffd34" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -491,14 +485,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11997" ], "x-ms-correlation-request-id": [ - "3f9e47d0-674a-4b7d-9256-503e09cdd31c" + "2ce1d29f-d9e7-46fa-b278-8389e1a28e95" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112330Z:3f9e47d0-674a-4b7d-9256-503e09cdd31c" + "WESTUS2:20221017T172751Z:2ce1d29f-d9e7-46fa-b278-8389e1a28e95" + ], + "Date": [ + "Mon, 17 Oct 2022 17:27:51 GMT" ], "Content-Length": [ "353" @@ -510,43 +510,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"name\": \"8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"name\": \"6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGYwMzc0MmMtMzRkMy00NThiLWEyOTMtNDFkY2RkODM4M2UxP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmMwYTMyYjQtMjgxMC00MGE3LWEwOGMtNWY1YjQzNDM2ZmE5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:23:59 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01" ], "x-ms-request-id": [ - "c78a6f83-d024-4e76-8c07-5d69a1e0a848" + "3301b0d1-449a-4ccd-84dd-90f079500daa" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -554,14 +548,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11996" ], "x-ms-correlation-request-id": [ - "e6ae77db-5f10-4ea5-ae95-681d7c322db7" + "bbc593ec-4ccd-4a32-bccb-03e72fdce46c" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112400Z:e6ae77db-5f10-4ea5-ae95-681d7c322db7" + "WESTUS2:20221017T172821Z:bbc593ec-4ccd-4a32-bccb-03e72fdce46c" + ], + "Date": [ + "Mon, 17 Oct 2022 17:28:20 GMT" ], "Content-Length": [ "353" @@ -573,43 +573,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"name\": \"8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"name\": \"6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGYwMzc0MmMtMzRkMy00NThiLWEyOTMtNDFkY2RkODM4M2UxP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmMwYTMyYjQtMjgxMC00MGE3LWEwOGMtNWY1YjQzNDM2ZmE5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:24:29 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01" ], "x-ms-request-id": [ - "d9b894ce-36d9-4fe3-b02f-9adc5346ed5a" + "e8064f63-6801-4246-869f-32b9993aec89" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -617,14 +611,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11995" ], "x-ms-correlation-request-id": [ - "4602c693-d3f0-4cc5-a1d4-ab048190ebe2" + "7c5c708b-8988-4007-9ef6-feefcaa4e4bf" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112430Z:4602c693-d3f0-4cc5-a1d4-ab048190ebe2" + "WESTUS2:20221017T172851Z:7c5c708b-8988-4007-9ef6-feefcaa4e4bf" + ], + "Date": [ + "Mon, 17 Oct 2022 17:28:50 GMT" ], "Content-Length": [ "353" @@ -636,43 +636,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"name\": \"8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"name\": \"6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGYwMzc0MmMtMzRkMy00NThiLWEyOTMtNDFkY2RkODM4M2UxP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmMwYTMyYjQtMjgxMC00MGE3LWEwOGMtNWY1YjQzNDM2ZmE5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:25:00 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01" ], "x-ms-request-id": [ - "9f5e7add-9e39-474c-89ce-dcdfad4d48e0" + "e5951bb1-c4fb-4a8f-8368-3ae68beaee30" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -680,14 +674,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11994" ], "x-ms-correlation-request-id": [ - "8a25074e-ec12-41a6-84e1-eab55ef5edae" + "323a22ed-5586-440f-a5d9-d1b7f5a195ac" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112501Z:8a25074e-ec12-41a6-84e1-eab55ef5edae" + "WESTUS2:20221017T172921Z:323a22ed-5586-440f-a5d9-d1b7f5a195ac" + ], + "Date": [ + "Mon, 17 Oct 2022 17:29:20 GMT" ], "Content-Length": [ "353" @@ -699,43 +699,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"name\": \"8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"name\": \"6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGYwMzc0MmMtMzRkMy00NThiLWEyOTMtNDFkY2RkODM4M2UxP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmMwYTMyYjQtMjgxMC00MGE3LWEwOGMtNWY1YjQzNDM2ZmE5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:25:31 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01" ], "x-ms-request-id": [ - "ae7a1813-69f1-4afd-86a3-2c8a9ba94774" + "9ad9cd09-e296-4028-9700-e9a96a34fd80" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -743,14 +737,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11993" ], "x-ms-correlation-request-id": [ - "22427d34-fea7-4630-a00a-67ead5857239" + "b9998c4d-5222-40fa-a760-4c96eeb8b3c8" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112531Z:22427d34-fea7-4630-a00a-67ead5857239" + "WESTUS2:20221017T172951Z:b9998c4d-5222-40fa-a760-4c96eeb8b3c8" + ], + "Date": [ + "Mon, 17 Oct 2022 17:29:51 GMT" ], "Content-Length": [ "353" @@ -762,43 +762,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"name\": \"8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"name\": \"6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGYwMzc0MmMtMzRkMy00NThiLWEyOTMtNDFkY2RkODM4M2UxP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmMwYTMyYjQtMjgxMC00MGE3LWEwOGMtNWY1YjQzNDM2ZmE5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:26:01 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01" ], "x-ms-request-id": [ - "412aebfb-c13d-42fd-bf2d-0ff08495a075" + "90d01971-ca81-4178-b58b-4c5f2cd532e1" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -806,14 +800,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11992" ], "x-ms-correlation-request-id": [ - "7c74e96f-515a-47d9-8bc3-4020be249281" + "6e110f6b-6b4f-4ae0-994f-6fbf6bff5632" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112601Z:7c74e96f-515a-47d9-8bc3-4020be249281" + "WESTUS2:20221017T173021Z:6e110f6b-6b4f-4ae0-994f-6fbf6bff5632" + ], + "Date": [ + "Mon, 17 Oct 2022 17:30:21 GMT" ], "Content-Length": [ "353" @@ -825,43 +825,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"name\": \"8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"name\": \"6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGYwMzc0MmMtMzRkMy00NThiLWEyOTMtNDFkY2RkODM4M2UxP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmMwYTMyYjQtMjgxMC00MGE3LWEwOGMtNWY1YjQzNDM2ZmE5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:26:32 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01" ], "x-ms-request-id": [ - "ccffaf88-6309-4633-bf47-4f30defbf990" + "51c469fc-0627-446c-a5cb-0884f546a72e" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -869,14 +863,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11991" ], "x-ms-correlation-request-id": [ - "1be9a9de-ab87-48eb-a044-5d421abb91d3" + "a4734e0c-f356-4de7-8972-6622d303169f" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112632Z:1be9a9de-ab87-48eb-a044-5d421abb91d3" + "WESTUS2:20221017T173052Z:a4734e0c-f356-4de7-8972-6622d303169f" + ], + "Date": [ + "Mon, 17 Oct 2022 17:30:51 GMT" ], "Content-Length": [ "353" @@ -888,43 +888,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"name\": \"8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"name\": \"6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGYwMzc0MmMtMzRkMy00NThiLWEyOTMtNDFkY2RkODM4M2UxP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmMwYTMyYjQtMjgxMC00MGE3LWEwOGMtNWY1YjQzNDM2ZmE5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:27:01 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01" ], "x-ms-request-id": [ - "e838e28f-1054-4b0a-8d87-827ce4b9a904" + "5c58ad41-a68d-4928-9e55-879f36845249" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -933,13 +927,19 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11990" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "d405cbf5-8bda-49f8-8df2-994fd74c99c6" + "f33d6885-dc90-4420-8f43-3215ae77dc78" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112702Z:d405cbf5-8bda-49f8-8df2-994fd74c99c6" + "WESTUS2:20221017T173122Z:f33d6885-dc90-4420-8f43-3215ae77dc78" + ], + "Date": [ + "Mon, 17 Oct 2022 17:31:21 GMT" ], "Content-Length": [ "353" @@ -951,43 +951,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"name\": \"8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"name\": \"6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGYwMzc0MmMtMzRkMy00NThiLWEyOTMtNDFkY2RkODM4M2UxP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmMwYTMyYjQtMjgxMC00MGE3LWEwOGMtNWY1YjQzNDM2ZmE5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:27:32 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01" ], "x-ms-request-id": [ - "d6e9bf01-4f6d-4233-8c50-5e336da81539" + "e51337b9-3292-466d-ab4f-b97e13586499" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -995,14 +989,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11989" ], "x-ms-correlation-request-id": [ - "380e19a9-139c-422f-9da2-29c409279442" + "1b13713d-de6c-4007-a1f3-5f09c4136911" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112732Z:380e19a9-139c-422f-9da2-29c409279442" + "WESTUS2:20221017T173152Z:1b13713d-de6c-4007-a1f3-5f09c4136911" + ], + "Date": [ + "Mon, 17 Oct 2022 17:31:51 GMT" ], "Content-Length": [ "353" @@ -1014,43 +1014,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"name\": \"8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"name\": \"6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGYwMzc0MmMtMzRkMy00NThiLWEyOTMtNDFkY2RkODM4M2UxP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmMwYTMyYjQtMjgxMC00MGE3LWEwOGMtNWY1YjQzNDM2ZmE5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:28:03 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01" ], "x-ms-request-id": [ - "487709ea-a8c1-4c1c-873d-7c29f191c84e" + "62d9cd43-e7e4-47c0-9d5b-e4257e5a65a7" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1058,14 +1052,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11988" ], "x-ms-correlation-request-id": [ - "4a4b991f-3209-44a9-9759-4c1b459dc0ae" + "96c8b052-5dfb-4b65-a2ff-0cde33c47fb2" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112803Z:4a4b991f-3209-44a9-9759-4c1b459dc0ae" + "WESTUS2:20221017T173222Z:96c8b052-5dfb-4b65-a2ff-0cde33c47fb2" + ], + "Date": [ + "Mon, 17 Oct 2022 17:32:21 GMT" ], "Content-Length": [ "353" @@ -1077,43 +1077,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"name\": \"8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"name\": \"6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGYwMzc0MmMtMzRkMy00NThiLWEyOTMtNDFkY2RkODM4M2UxP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmMwYTMyYjQtMjgxMC00MGE3LWEwOGMtNWY1YjQzNDM2ZmE5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:28:32 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01" ], "x-ms-request-id": [ - "11b21168-6606-4174-af07-070d5195916d" + "3307af72-4398-4d36-b87b-9711abd3efb6" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1121,14 +1115,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11987" ], "x-ms-correlation-request-id": [ - "1a90daab-535d-485c-a10a-60c281102375" + "1e83ac4c-d986-4f29-a398-6e6f433c26e6" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112833Z:1a90daab-535d-485c-a10a-60c281102375" + "WESTUS2:20221017T173252Z:1e83ac4c-d986-4f29-a398-6e6f433c26e6" + ], + "Date": [ + "Mon, 17 Oct 2022 17:32:52 GMT" ], "Content-Length": [ "353" @@ -1140,43 +1140,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"name\": \"8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"name\": \"6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGYwMzc0MmMtMzRkMy00NThiLWEyOTMtNDFkY2RkODM4M2UxP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmMwYTMyYjQtMjgxMC00MGE3LWEwOGMtNWY1YjQzNDM2ZmE5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:29:03 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01" ], "x-ms-request-id": [ - "2620bbee-1244-4d3f-b084-6bf052d9c2e7" + "6ff947f0-cc50-4c91-9cf1-2b5f8362d43f" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1184,14 +1178,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11986" ], "x-ms-correlation-request-id": [ - "fc1fdad6-b824-4ef0-87ec-02a242ddfe60" + "137cf019-d7f9-465c-8e5e-a9b08a481ad0" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112903Z:fc1fdad6-b824-4ef0-87ec-02a242ddfe60" + "WESTUS2:20221017T173322Z:137cf019-d7f9-465c-8e5e-a9b08a481ad0" + ], + "Date": [ + "Mon, 17 Oct 2022 17:33:22 GMT" ], "Content-Length": [ "353" @@ -1203,43 +1203,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"name\": \"8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"name\": \"6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGYwMzc0MmMtMzRkMy00NThiLWEyOTMtNDFkY2RkODM4M2UxP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmMwYTMyYjQtMjgxMC00MGE3LWEwOGMtNWY1YjQzNDM2ZmE5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:29:33 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01" ], "x-ms-request-id": [ - "59aaa6ae-f9a4-4c5b-8d9c-4378ec979afc" + "c8675088-4e70-4252-a007-ed4b66b339c0" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1247,14 +1241,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11985" ], "x-ms-correlation-request-id": [ - "6967fb24-350c-4527-8684-9340baffc75c" + "45b5621a-63ba-4e12-96f8-5d08c0f464ad" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112934Z:6967fb24-350c-4527-8684-9340baffc75c" + "WESTUS2:20221017T173352Z:45b5621a-63ba-4e12-96f8-5d08c0f464ad" + ], + "Date": [ + "Mon, 17 Oct 2022 17:33:52 GMT" ], "Content-Length": [ "353" @@ -1266,43 +1266,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"name\": \"8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"name\": \"6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGYwMzc0MmMtMzRkMy00NThiLWEyOTMtNDFkY2RkODM4M2UxP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmMwYTMyYjQtMjgxMC00MGE3LWEwOGMtNWY1YjQzNDM2ZmE5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:30:03 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01" ], "x-ms-request-id": [ - "b3b15195-f106-4d91-b36e-a1fd1c39e80c" + "93ec55c1-f793-47aa-96a3-67f9ea688936" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1310,14 +1304,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11984" ], "x-ms-correlation-request-id": [ - "84673c58-9df6-41f0-8f9e-8723ed20e7a2" + "4b653920-1648-407e-ba01-d16da51fb1e9" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113004Z:84673c58-9df6-41f0-8f9e-8723ed20e7a2" + "WESTUS2:20221017T173422Z:4b653920-1648-407e-ba01-d16da51fb1e9" + ], + "Date": [ + "Mon, 17 Oct 2022 17:34:22 GMT" ], "Content-Length": [ "353" @@ -1329,43 +1329,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"name\": \"8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"name\": \"6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGYwMzc0MmMtMzRkMy00NThiLWEyOTMtNDFkY2RkODM4M2UxP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmMwYTMyYjQtMjgxMC00MGE3LWEwOGMtNWY1YjQzNDM2ZmE5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:30:33 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01" ], "x-ms-request-id": [ - "78e2a83f-c147-4989-9cf6-b099f9d69f49" + "0382e4e5-eb99-4a3c-b571-cf47971a5a43" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1373,14 +1367,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11983" ], "x-ms-correlation-request-id": [ - "3e25ca30-d12d-4cc7-a5a8-bdeca2aa1a5f" + "c3424643-521e-4b6c-a08c-746d2335f8cc" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113034Z:3e25ca30-d12d-4cc7-a5a8-bdeca2aa1a5f" + "WESTUS2:20221017T173452Z:c3424643-521e-4b6c-a08c-746d2335f8cc" + ], + "Date": [ + "Mon, 17 Oct 2022 17:34:52 GMT" ], "Content-Length": [ "353" @@ -1392,43 +1392,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"name\": \"8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"name\": \"6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGYwMzc0MmMtMzRkMy00NThiLWEyOTMtNDFkY2RkODM4M2UxP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmMwYTMyYjQtMjgxMC00MGE3LWEwOGMtNWY1YjQzNDM2ZmE5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:31:05 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01" ], "x-ms-request-id": [ - "1dfb0069-f36f-422c-a6d8-d8ceee851966" + "69ad76e3-4d20-41dd-95b4-72324c229e4b" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1436,14 +1430,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11982" ], "x-ms-correlation-request-id": [ - "a5eff46e-ced2-4961-8775-f6d6a3aec678" + "3035d21c-84f8-4be9-bce2-5ace2d009268" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113105Z:a5eff46e-ced2-4961-8775-f6d6a3aec678" + "WESTUS2:20221017T173522Z:3035d21c-84f8-4be9-bce2-5ace2d009268" + ], + "Date": [ + "Mon, 17 Oct 2022 17:35:22 GMT" ], "Content-Length": [ "353" @@ -1455,43 +1455,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"name\": \"8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"name\": \"6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGYwMzc0MmMtMzRkMy00NThiLWEyOTMtNDFkY2RkODM4M2UxP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmMwYTMyYjQtMjgxMC00MGE3LWEwOGMtNWY1YjQzNDM2ZmE5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:31:35 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01" ], "x-ms-request-id": [ - "8fc136fc-e19b-4cf3-934b-29ab40de84f4" + "1b9a3b02-695e-415e-acaa-82d363d1e46f" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1499,14 +1493,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11981" ], "x-ms-correlation-request-id": [ - "9ec2500c-7332-41aa-b468-811e53890fdd" + "9710af34-c797-4cfe-b454-5e0328897cb0" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113135Z:9ec2500c-7332-41aa-b468-811e53890fdd" + "WESTUS2:20221017T173552Z:9710af34-c797-4cfe-b454-5e0328897cb0" + ], + "Date": [ + "Mon, 17 Oct 2022 17:35:52 GMT" ], "Content-Length": [ "353" @@ -1518,43 +1518,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"name\": \"8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"name\": \"6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGYwMzc0MmMtMzRkMy00NThiLWEyOTMtNDFkY2RkODM4M2UxP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmMwYTMyYjQtMjgxMC00MGE3LWEwOGMtNWY1YjQzNDM2ZmE5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:32:05 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01" ], "x-ms-request-id": [ - "5bb1350b-f7aa-46bd-96ea-8aff4620d96c" + "e33b0ed9-54fc-47cd-a099-dad41985d40c" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1562,14 +1556,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "11980" ], "x-ms-correlation-request-id": [ - "e3975708-4855-43b1-96f5-71167af74b85" + "7a5bc20e-1709-4281-a2bf-147938adeded" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113205Z:e3975708-4855-43b1-96f5-71167af74b85" + "WESTUS2:20221017T173622Z:7a5bc20e-1709-4281-a2bf-147938adeded" + ], + "Date": [ + "Mon, 17 Oct 2022 17:36:22 GMT" ], "Content-Length": [ "353" @@ -1581,43 +1581,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"name\": \"8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"name\": \"6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGYwMzc0MmMtMzRkMy00NThiLWEyOTMtNDFkY2RkODM4M2UxP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmMwYTMyYjQtMjgxMC00MGE3LWEwOGMtNWY1YjQzNDM2ZmE5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:32:36 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01" ], "x-ms-request-id": [ - "d07a8ffb-2ff9-4f36-886b-22b22493d87f" + "faf54249-9b80-45c2-a5c8-d5b8046b8184" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1626,13 +1620,19 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" + "11979" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "2204423a-ef49-4132-a96a-6c85d78f0702" + "3de9160d-9d47-402e-a63b-49631cc93af7" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113236Z:2204423a-ef49-4132-a96a-6c85d78f0702" + "WESTUS2:20221017T173653Z:3de9160d-9d47-402e-a63b-49631cc93af7" + ], + "Date": [ + "Mon, 17 Oct 2022 17:36:52 GMT" ], "Content-Length": [ "353" @@ -1644,43 +1644,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"name\": \"8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"name\": \"6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGYwMzc0MmMtMzRkMy00NThiLWEyOTMtNDFkY2RkODM4M2UxP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmMwYTMyYjQtMjgxMC00MGE3LWEwOGMtNWY1YjQzNDM2ZmE5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:33:06 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01" ], "x-ms-request-id": [ - "33873c3b-33b7-40b3-bfe0-5210df00c839" + "2ac66a19-4aed-44af-ab89-9b4378ff2cc1" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1688,14 +1682,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" + "11978" ], "x-ms-correlation-request-id": [ - "22cce73f-7599-480e-8bd6-4849404b00ab" + "ae05e006-7864-4920-92c4-c06d118017b3" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113306Z:22cce73f-7599-480e-8bd6-4849404b00ab" + "WESTUS2:20221017T173723Z:ae05e006-7864-4920-92c4-c06d118017b3" + ], + "Date": [ + "Mon, 17 Oct 2022 17:37:23 GMT" ], "Content-Length": [ "353" @@ -1707,43 +1707,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"name\": \"8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"name\": \"6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGYwMzc0MmMtMzRkMy00NThiLWEyOTMtNDFkY2RkODM4M2UxP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmMwYTMyYjQtMjgxMC00MGE3LWEwOGMtNWY1YjQzNDM2ZmE5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:33:36 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01" ], "x-ms-request-id": [ - "92fcf979-efd1-4f5a-af13-d7eab3e482de" + "20f4c24a-bea4-43f2-badc-e297d73ce7de" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1751,14 +1745,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" + "11977" ], "x-ms-correlation-request-id": [ - "c3b8ecfb-4c92-4b53-97e0-26ad1465ec75" + "e12c5cb0-9b4d-43dd-bd1c-9d1cfe1d09d9" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113336Z:c3b8ecfb-4c92-4b53-97e0-26ad1465ec75" + "WESTUS2:20221017T173753Z:e12c5cb0-9b4d-43dd-bd1c-9d1cfe1d09d9" + ], + "Date": [ + "Mon, 17 Oct 2022 17:37:52 GMT" ], "Content-Length": [ "353" @@ -1770,43 +1770,100 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"name\": \"8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"name\": \"6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGYwMzc0MmMtMzRkMy00NThiLWEyOTMtNDFkY2RkODM4M2UxP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmMwYTMyYjQtMjgxMC00MGE3LWEwOGMtNWY1YjQzNDM2ZmE5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:34:06 GMT" - ], "Pragma": [ "no-cache" ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01" + ], + "x-ms-request-id": [ + "2793643c-3b78-46e8-b50c-f692d037bdcc" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-correlation-request-id": [ + "a02bd20e-b477-41fb-8d34-af2f722b90fd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T173823Z:a02bd20e-b477-41fb-8d34-af2f722b90fd" + ], + "Date": [ + "Mon, 17 Oct 2022 17:38:22 GMT" + ], + "Content-Length": [ + "353" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"name\": \"6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmMwYTMyYjQtMjgxMC00MGE3LWEwOGMtNWY1YjQzNDM2ZmE5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01" ], "x-ms-request-id": [ - "1de82393-6431-4bec-8b4f-75c5ac3c65ac" + "80ce5573-8c72-445a-a4c4-64299aa926c2" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1814,14 +1871,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" + "11975" ], "x-ms-correlation-request-id": [ - "abfefd11-4b3c-4770-8037-3885f975b0a1" + "978a26d0-8881-44ea-8409-f1f84d5c811d" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113406Z:abfefd11-4b3c-4770-8037-3885f975b0a1" + "WESTUS2:20221017T173853Z:978a26d0-8881-44ea-8409-f1f84d5c811d" + ], + "Date": [ + "Mon, 17 Oct 2022 17:38:52 GMT" ], "Content-Length": [ "353" @@ -1833,43 +1896,100 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"name\": \"8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"name\": \"6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGYwMzc0MmMtMzRkMy00NThiLWEyOTMtNDFkY2RkODM4M2UxP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmMwYTMyYjQtMjgxMC00MGE3LWEwOGMtNWY1YjQzNDM2ZmE5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:34:36 GMT" - ], "Pragma": [ "no-cache" ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01" + ], + "x-ms-request-id": [ + "5a6e4db2-8609-45c8-8b19-67634a165eb2" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-correlation-request-id": [ + "2073eeb7-50c8-445c-b429-c704bc376afe" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T173923Z:2073eeb7-50c8-445c-b429-c704bc376afe" + ], + "Date": [ + "Mon, 17 Oct 2022 17:39:22 GMT" + ], + "Content-Length": [ + "353" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"name\": \"6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmMwYTMyYjQtMjgxMC00MGE3LWEwOGMtNWY1YjQzNDM2ZmE5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01" ], "x-ms-request-id": [ - "004fd170-b8ae-402b-8169-46799c74ad26" + "c8d45d8e-bd56-4164-bd83-0e78f5e627c8" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1877,14 +1997,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11943" + "11973" ], "x-ms-correlation-request-id": [ - "84b21d33-a8ee-4480-a956-8b2503711046" + "77fcc9da-8e22-41bd-af41-b1212c71b731" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113437Z:84b21d33-a8ee-4480-a956-8b2503711046" + "WESTUS2:20221017T173953Z:77fcc9da-8e22-41bd-af41-b1212c71b731" + ], + "Date": [ + "Mon, 17 Oct 2022 17:39:52 GMT" ], "Content-Length": [ "353" @@ -1896,43 +2022,100 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"name\": \"8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"name\": \"6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGYwMzc0MmMtMzRkMy00NThiLWEyOTMtNDFkY2RkODM4M2UxP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmMwYTMyYjQtMjgxMC00MGE3LWEwOGMtNWY1YjQzNDM2ZmE5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:35:07 GMT" - ], "Pragma": [ "no-cache" ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01" + ], + "x-ms-request-id": [ + "a76fb47b-3ab9-43fd-8aaa-eabaf59510bd" + ], + "x-rp-server-mvid": [ + "833439e0-b740-4cd3-bb1d-5515649d1e5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-correlation-request-id": [ + "49a0b8d4-12cd-42d3-b5ae-115bb512b804" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20221017T174023Z:49a0b8d4-12cd-42d3-b5ae-115bb512b804" + ], + "Date": [ + "Mon, 17 Oct 2022 17:40:23 GMT" + ], + "Content-Length": [ + "353" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"name\": \"6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvNmMwYTMyYjQtMjgxMC00MGE3LWEwOGMtNWY1YjQzNDM2ZmE5P2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.47601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9?api-version=2022-06-01" ], "x-ms-request-id": [ - "b48b1555-3ab0-433d-8ede-a399f33cdfed" + "aee4cee3-afe2-46f3-8fc5-bcba9bd90fb1" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1940,14 +2123,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11943" + "11971" ], "x-ms-correlation-request-id": [ - "33b939d8-6b61-42ec-bd58-1e7db485f684" + "fd3d87ef-0d2d-4835-b878-51d27299f533" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113507Z:33b939d8-6b61-42ec-bd58-1e7db485f684" + "WESTUS2:20221017T174053Z:fd3d87ef-0d2d-4835-b878-51d27299f533" + ], + "Date": [ + "Mon, 17 Oct 2022 17:40:53 GMT" ], "Content-Length": [ "352" @@ -1959,40 +2148,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"name\": \"8f03742c-34d3-458b-a293-41dcdd8383e1\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"name\": \"6c0a32b4-2810-40a7-a08c-5f5b43436fa9\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisReboot6439/providers/Microsoft.Cache/redis/RedisReboot6083?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzUmVib290NjQzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzUmVib290NjA4Mz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisReboot3795/providers/Microsoft.Cache/redis/RedisReboot2639?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzUmVib290Mzc5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzUmVib290MjYzOT9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:35:07 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "c6c8f215-0fa1-472b-bb56-40aa44590728" + "7b8a085b-9245-4166-84b8-c37c3f987c2e" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2000,17 +2183,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11942" + "11970" ], "x-ms-correlation-request-id": [ - "abbd647c-bce9-4661-9b03-6eb5c3a278ff" + "e3648e9c-1bb5-4970-ba9c-4575ac48a825" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113508Z:abbd647c-bce9-4661-9b03-6eb5c3a278ff" + "WESTUS2:20221017T174054Z:e3648e9c-1bb5-4970-ba9c-4575ac48a825" + ], + "Date": [ + "Mon, 17 Oct 2022 17:40:53 GMT" ], "Content-Length": [ - "774" + "771" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2019,46 +2208,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisReboot6439/providers/Microsoft.Cache/Redis/RedisReboot6083\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisReboot6083\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisReboot6083.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisReboot3795/providers/Microsoft.Cache/Redis/RedisReboot2639\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisReboot2639\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisReboot2639.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisReboot6439/providers/Microsoft.Cache/redis/RedisReboot6083?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzUmVib290NjQzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzUmVib290NjA4Mz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisReboot3795/providers/Microsoft.Cache/redis/RedisReboot2639?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzUmVib290Mzc5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzUmVib290MjYzOT9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a2f9ec7-8003-4a13-9fdf-64c3abcddf58" + "543105b3-cefd-4af3-920c-5ed9cce58f67" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:35:08 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "67033efc-6aeb-47e0-867a-25f967c45285" + "2ba776af-ffdd-4ee5-a319-030183a7c1d1" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2066,17 +2249,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11941" + "11969" ], "x-ms-correlation-request-id": [ - "d7d40871-f7bf-4717-8ca4-a453408ebfad" + "cae6b0ba-ce9d-4850-bba9-4de6645b7cfc" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113508Z:d7d40871-f7bf-4717-8ca4-a453408ebfad" + "WESTUS2:20221017T174054Z:cae6b0ba-ce9d-4850-bba9-4de6645b7cfc" + ], + "Date": [ + "Mon, 17 Oct 2022 17:40:53 GMT" ], "Content-Length": [ - "774" + "771" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2085,26 +2274,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisReboot6439/providers/Microsoft.Cache/Redis/RedisReboot6083\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisReboot6083\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisReboot6083.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisReboot3795/providers/Microsoft.Cache/Redis/RedisReboot2639\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisReboot2639\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisReboot2639.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisReboot6439/providers/Microsoft.Cache/redis/RedisReboot6083/forceReboot?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzUmVib290NjQzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzUmVib290NjA4My9mb3JjZVJlYm9vdD9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisReboot3795/providers/Microsoft.Cache/redis/RedisReboot2639/forceReboot?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzUmVib290Mzc5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzUmVib290MjYzOS9mb3JjZVJlYm9vdD9hcGktdmVyc2lvbj0yMDIyLTA2LTAx", "RequestMethod": "POST", "RequestBody": "{\r\n \"rebootType\": \"AllNodes\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0e666ba2-dc1c-4c92-9e63-1d3e3aa9ebf7" + "e32cd4f2-d49e-4ede-9eb6-e4178b0c5171" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2117,20 +2306,14 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:35:08 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "a4d5805e-29cd-4701-8d1c-7e93f6348111" + "0b08385e-295e-4116-85c6-c9f4a38e624e" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2138,14 +2321,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1199" ], "x-ms-correlation-request-id": [ - "b1a42453-1e61-46d3-8149-26ecfb5d9943" + "4cd11c2e-88eb-419b-bde4-3c5d02f2ad68" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113509Z:b1a42453-1e61-46d3-8149-26ecfb5d9943" + "WESTUS2:20221017T174054Z:4cd11c2e-88eb-419b-bde4-3c5d02f2ad68" + ], + "Date": [ + "Mon, 17 Oct 2022 17:40:54 GMT" ], "Content-Length": [ "127" @@ -2163,11 +2352,11 @@ ], "Names": { "RebootBothNodesTest": [ - "RedisReboot6439", - "RedisReboot6083" + "RedisReboot3795", + "RedisReboot2639" ] }, "Variables": { - "SubscriptionId": "0ee2a145-4d40-44f4-b764-67b40274f1ac" + "SubscriptionId": "3919658b-68ae-4509-8c17-6a2238340ae7" } } \ No newline at end of file diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/TestsFixture/.ctor.json b/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/TestsFixture/.ctor.json index 0b5bb931be65..1cb62cd58294 100644 --- a/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/TestsFixture/.ctor.json +++ b/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/TestsFixture/.ctor.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/register?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/register?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f6f5137-1683-4761-8483-dfa58c218915" + "5889b8d9-a81d-4064-b1c9-1312234e0379" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", + "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:23:19 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1199" ], "x-ms-request-id": [ - "03254263-9a83-4178-9f27-f54955e1d76a" + "e51a1b17-040f-4f6d-b9ac-22bd0ab9e2c9" ], "x-ms-correlation-request-id": [ - "03254263-9a83-4178-9f27-f54955e1d76a" + "e51a1b17-040f-4f6d-b9ac-22bd0ab9e2c9" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112319Z:03254263-9a83-4178-9f27-f54955e1d76a" + "WESTUS2:20221017T174057Z:e51a1b17-040f-4f6d-b9ac-22bd0ab9e2c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,8 +44,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Mon, 17 Oct 2022 17:40:57 GMT" + ], "Content-Length": [ - "13832" + "14731" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,25 +57,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateLinkResources\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateLinkResources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise/databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/EventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"France South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Qatar Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateLinkResources\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateLinkResources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise/databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/EventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d0be01f-9ae2-49d4-bf17-ea7ced120c52" + "cd3fb106-b4df-4779-a129-acd464b26a91" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", + "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -83,23 +83,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:23:19 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11999" ], "x-ms-request-id": [ - "06a13f84-20d2-470b-bd71-04dbaf419f5e" + "ca31fb8c-5b06-4e4c-9d2a-ce7cb18ed0c0" ], "x-ms-correlation-request-id": [ - "06a13f84-20d2-470b-bd71-04dbaf419f5e" + "ca31fb8c-5b06-4e4c-9d2a-ce7cb18ed0c0" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112319Z:06a13f84-20d2-470b-bd71-04dbaf419f5e" + "WESTUS2:20221017T174057Z:ca31fb8c-5b06-4e4c-9d2a-ce7cb18ed0c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -107,35 +104,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "13832" + "Date": [ + "Mon, 17 Oct 2022 17:40:57 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "14731" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateLinkResources\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateLinkResources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise/databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/EventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"France South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Qatar Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateLinkResources\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateLinkResources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise/databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/EventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/RedisCreateUpdate9078?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlZ3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlOTA3OD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/RedisCreateUpdate6218?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlZ3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlNjIxOD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f0dc8040-604a-4573-9627-ada78c7839f2" + "4bde2bd9-5707-42ba-875c-f45914f8ba47" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", + "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ @@ -149,23 +149,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:23:20 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1199" ], "x-ms-request-id": [ - "b66120e5-53ca-4c4b-9672-27ef096813e0" + "74ca7f0e-8b27-4332-b664-856e9b388a46" ], "x-ms-correlation-request-id": [ - "b66120e5-53ca-4c4b-9672-27ef096813e0" + "74ca7f0e-8b27-4332-b664-856e9b388a46" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112320Z:b66120e5-53ca-4c4b-9672-27ef096813e0" + "WESTUS2:20221017T174058Z:74ca7f0e-8b27-4332-b664-856e9b388a46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -173,6 +170,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Mon, 17 Oct 2022 17:40:58 GMT" + ], "Content-Length": [ "195" ], @@ -183,25 +183,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisCreateUpdate9078\",\r\n \"name\": \"RedisCreateUpdate9078\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisCreateUpdate6218\",\r\n \"name\": \"RedisCreateUpdate6218\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/RedisCreateUpdate9078?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlZ3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlOTA3OD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/RedisCreateUpdate6218?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlZ3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlNjIxOD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8c5ee06f-0385-4441-91b9-c11b1e82926d" + "263e8151-5c7e-4584-b965-09821d595f3e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", + "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -209,23 +209,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:23:20 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11998" ], "x-ms-request-id": [ - "d6e36789-11c0-4ca4-9b87-a9e2c19d71b9" + "27afae29-37b1-40a6-bcb7-b9a669cb7bc7" ], "x-ms-correlation-request-id": [ - "d6e36789-11c0-4ca4-9b87-a9e2c19d71b9" + "27afae29-37b1-40a6-bcb7-b9a669cb7bc7" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112320Z:d6e36789-11c0-4ca4-9b87-a9e2c19d71b9" + "WESTUS2:20221017T174058Z:27afae29-37b1-40a6-bcb7-b9a669cb7bc7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -233,27 +230,30 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "195" + "Date": [ + "Mon, 17 Oct 2022 17:40:58 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "195" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisCreateUpdate9078\",\r\n \"name\": \"RedisCreateUpdate9078\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisCreateUpdate6218\",\r\n \"name\": \"RedisCreateUpdate6218\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 } ], "Names": { ".ctor": [ - "RedisCreateUpdate9078", - "RedisCreateUpdate3895" + "RedisCreateUpdate6218", + "RedisCreateUpdate6042" ] }, "Variables": { - "SubscriptionId": "0ee2a145-4d40-44f4-b764-67b40274f1ac" + "SubscriptionId": "3919658b-68ae-4509-8c17-6a2238340ae7" } } \ No newline at end of file diff --git a/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/TestsFixtureWithCacheCreate/.ctor.json b/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/TestsFixtureWithCacheCreate/.ctor.json index 4a8059de1dd0..a27072317cf9 100644 --- a/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/TestsFixtureWithCacheCreate/.ctor.json +++ b/sdk/redis/Microsoft.Azure.Management.Redis/tests/SessionRecords/TestsFixtureWithCacheCreate/.ctor.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/register?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/register?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "67da6c3c-3b53-455c-aca5-2ba68e931395" + "b81229bf-74f1-4c23-8e1f-9652754c57e1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", + "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:22:21 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1199" ], "x-ms-request-id": [ - "01aa2cf0-0fba-4433-a705-df75e7715ae8" + "d73b1ef4-011c-4457-b9ed-9b052ad32375" ], "x-ms-correlation-request-id": [ - "01aa2cf0-0fba-4433-a705-df75e7715ae8" + "d73b1ef4-011c-4457-b9ed-9b052ad32375" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112221Z:01aa2cf0-0fba-4433-a705-df75e7715ae8" + "WESTUS2:20221017T192902Z:d73b1ef4-011c-4457-b9ed-9b052ad32375" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,8 +44,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Mon, 17 Oct 2022 19:29:02 GMT" + ], "Content-Length": [ - "13832" + "14731" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,25 +57,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateLinkResources\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateLinkResources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise/databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/EventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"France South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Qatar Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateLinkResources\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateLinkResources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise/databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/EventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "daa9d2b1-412f-4c60-8c16-a866add15511" + "8be68366-7c99-4594-a159-d8fba25072a1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", + "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -83,23 +83,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:22:22 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11999" ], "x-ms-request-id": [ - "235b7128-2655-4077-8a49-dac690a95052" + "961a5a82-84fe-42a9-b78e-2460aff17aa9" ], "x-ms-correlation-request-id": [ - "235b7128-2655-4077-8a49-dac690a95052" + "961a5a82-84fe-42a9-b78e-2460aff17aa9" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112222Z:235b7128-2655-4077-8a49-dac690a95052" + "WESTUS2:20221017T192902Z:961a5a82-84fe-42a9-b78e-2460aff17aa9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -107,35 +104,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "13832" + "Date": [ + "Mon, 17 Oct 2022 19:29:02 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "14731" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateLinkResources\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateLinkResources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise/databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/EventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"France South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Qatar Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateEndpointConnections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/privateLinkResources\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2020-04-01-preview\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-12-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2020-04-01-preview\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnectionProxies/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateEndpointConnections/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisEnterprise/privateLinkResources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redisEnterprise/databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\r\n \"2021-08-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01-preview\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/EventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Jio India West\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/RedisGetList5682?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlZ3JvdXBzL1JlZGlzR2V0TGlzdDU2ODI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/RedisGetList8057?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlZ3JvdXBzL1JlZGlzR2V0TGlzdDgwNTc/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5c5077a3-4d14-4ea8-b00e-98379741b8dc" + "6a572639-ad3c-4eee-9bf1-e85c916fbc54" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", + "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ @@ -149,23 +149,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:22:22 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1199" ], "x-ms-request-id": [ - "0756a01a-f2a5-42a7-a5ef-84823d64a976" + "c739e550-5fc0-45fe-9d92-3e9aec2adc76" ], "x-ms-correlation-request-id": [ - "0756a01a-f2a5-42a7-a5ef-84823d64a976" + "c739e550-5fc0-45fe-9d92-3e9aec2adc76" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112222Z:0756a01a-f2a5-42a7-a5ef-84823d64a976" + "WESTUS2:20221017T192903Z:c739e550-5fc0-45fe-9d92-3e9aec2adc76" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -173,6 +170,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Mon, 17 Oct 2022 19:29:03 GMT" + ], "Content-Length": [ "185" ], @@ -183,25 +183,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGetList5682\",\r\n \"name\": \"RedisGetList5682\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGetList8057\",\r\n \"name\": \"RedisGetList8057\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourcegroups/RedisGetList5682?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlZ3JvdXBzL1JlZGlzR2V0TGlzdDU2ODI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourcegroups/RedisGetList8057?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlZ3JvdXBzL1JlZGlzR2V0TGlzdDgwNTc/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb1a4f7e-14f3-4fa5-9f94-6321d3f1b6f8" + "8627fc13-7a34-4936-ac15-6d8a88633f21" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", + "OSVersion/Microsoft.Windows.10.0.22621", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -209,23 +209,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:22:22 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11998" ], "x-ms-request-id": [ - "22e5fa8e-c135-4d86-ba36-aa40d72ef9a3" + "1dee82ac-6be5-4d46-ba76-73596e1cfb3e" ], "x-ms-correlation-request-id": [ - "22e5fa8e-c135-4d86-ba36-aa40d72ef9a3" + "1dee82ac-6be5-4d46-ba76-73596e1cfb3e" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112223Z:22e5fa8e-c135-4d86-ba36-aa40d72ef9a3" + "WESTUS2:20221017T192903Z:1dee82ac-6be5-4d46-ba76-73596e1cfb3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -233,36 +230,39 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "185" + "Date": [ + "Mon, 17 Oct 2022 19:29:03 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "185" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGetList5682\",\r\n \"name\": \"RedisGetList5682\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGetList8057\",\r\n \"name\": \"RedisGetList8057\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGetList5682/providers/Microsoft.Cache/redis/RedisGetList3705?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU2ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3QzNzA1P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGetList8057/providers/Microsoft.Cache/redis/RedisGetList961?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDgwNTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3Q5NjE/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1517ecad-a223-426d-bbdd-da79637c2bea" + "7dcfb26f-393c-472f-8aa3-aa9e51ee1a8f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -275,26 +275,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:22:25 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGetList5682/providers/Microsoft.Cache/redis/RedisGetList3705?api-version=2021-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGetList8057/providers/Microsoft.Cache/redis/RedisGetList961?api-version=2022-06-01" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01" ], "x-ms-request-id": [ - "8f52a61c-ff0d-4e00-ad87-f5cf9703f163" + "0160fae9-52cc-41bd-927c-cf0ea7e1551c" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -302,17 +296,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1199" ], "x-ms-correlation-request-id": [ - "7edc929e-c428-4da3-b7a2-a98ccfe0d3f8" + "384614e6-98f4-4d10-b136-500cd0ea384b" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112226Z:7edc929e-c428-4da3-b7a2-a98ccfe0d3f8" + "WESTUS2:20221017T192905Z:384614e6-98f4-4d10-b136-500cd0ea384b" + ], + "Date": [ + "Mon, 17 Oct 2022 19:29:04 GMT" ], "Content-Length": [ - "1111" + "1107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -321,43 +321,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGetList5682/providers/Microsoft.Cache/Redis/RedisGetList3705\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGetList3705\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"*****\",\r\n \"secondaryKey\": \"******\"\r\n },\r\n \"hostName\": \"RedisGetList3705.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGetList8057/providers/Microsoft.Cache/Redis/RedisGetList961\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGetList961\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"30\",\r\n \"maxfragmentationmemory-reserved\": \"30\",\r\n \"maxmemory-delta\": \"30\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\"\r\n },\r\n \"hostName\": \"RedisGetList961.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGY1MmE2MWMtZmYwZC00ZTAwLWFkODctZjVjZjk3MDNmMTYzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDE2MGZhZTktNTJjYy00MWJkLTkyN2MtY2YwZWE3ZTE1NTFjP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:22:56 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01" ], "x-ms-request-id": [ - "f9f38b63-4f91-4689-9e17-4013207f92d9" + "534d7a83-11aa-4425-8542-2038ca795c34" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -365,77 +359,20 @@ "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" - ], - "x-ms-correlation-request-id": [ - "26764c18-4969-4cdd-ad19-2b5ef1140a25" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112256Z:26764c18-4969-4cdd-ad19-2b5ef1140a25" - ], - "Content-Length": [ - "353" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"name\": \"8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGY1MmE2MWMtZmYwZC00ZTAwLWFkODctZjVjZjk3MDNmMTYzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 26 Nov 2021 11:23:26 GMT" - ], - "Pragma": [ - "no-cache" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "ab32324d-5383-4afd-8f52-c4c565f150b9" - ], - "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11999" ], "x-ms-correlation-request-id": [ - "df20179a-7641-4b0c-9944-c51f224e9a43" + "ca5ae390-155d-4c7a-a3a0-b0f3067568e7" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112326Z:df20179a-7641-4b0c-9944-c51f224e9a43" + "WESTUS2:20221017T192935Z:ca5ae390-155d-4c7a-a3a0-b0f3067568e7" + ], + "Date": [ + "Mon, 17 Oct 2022 19:29:35 GMT" ], "Content-Length": [ "353" @@ -447,43 +384,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"name\": \"8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"name\": \"0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGY1MmE2MWMtZmYwZC00ZTAwLWFkODctZjVjZjk3MDNmMTYzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDE2MGZhZTktNTJjYy00MWJkLTkyN2MtY2YwZWE3ZTE1NTFjP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:23:56 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01" ], "x-ms-request-id": [ - "6a817591-1cb4-4f4b-b375-dadc086dba0c" + "b41dc566-40cf-452c-b3b4-95a211c01278" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -491,77 +422,20 @@ "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" - ], - "x-ms-correlation-request-id": [ - "a78d1117-64cb-4848-852e-32a26335653c" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112357Z:a78d1117-64cb-4848-852e-32a26335653c" - ], - "Content-Length": [ - "353" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"name\": \"8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGY1MmE2MWMtZmYwZC00ZTAwLWFkODctZjVjZjk3MDNmMTYzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 26 Nov 2021 11:24:26 GMT" - ], - "Pragma": [ - "no-cache" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "63252d09-6cb4-4439-b2ae-40bffd31578e" - ], - "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11998" ], "x-ms-correlation-request-id": [ - "03111194-f86d-4e5c-8f79-8c63b7de4b0f" + "95c7d880-cbed-4efe-bb48-34c648643ca4" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112427Z:03111194-f86d-4e5c-8f79-8c63b7de4b0f" + "WESTUS2:20221017T193005Z:95c7d880-cbed-4efe-bb48-34c648643ca4" + ], + "Date": [ + "Mon, 17 Oct 2022 19:30:05 GMT" ], "Content-Length": [ "353" @@ -573,43 +447,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"name\": \"8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"name\": \"0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGY1MmE2MWMtZmYwZC00ZTAwLWFkODctZjVjZjk3MDNmMTYzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDE2MGZhZTktNTJjYy00MWJkLTkyN2MtY2YwZWE3ZTE1NTFjP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:24:57 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01" ], "x-ms-request-id": [ - "d77426da-dc10-4608-bf94-22d24ec84cf9" + "f55258ab-6cce-403c-bdda-cbe720315b46" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -617,14 +485,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11997" ], "x-ms-correlation-request-id": [ - "18ba8779-62fd-4fab-80b3-f0157a1e9952" + "1004f1ba-b916-466c-97ae-8518ff44f062" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112457Z:18ba8779-62fd-4fab-80b3-f0157a1e9952" + "WESTUS2:20221017T193035Z:1004f1ba-b916-466c-97ae-8518ff44f062" + ], + "Date": [ + "Mon, 17 Oct 2022 19:30:35 GMT" ], "Content-Length": [ "353" @@ -636,43 +510,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"name\": \"8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"name\": \"0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGY1MmE2MWMtZmYwZC00ZTAwLWFkODctZjVjZjk3MDNmMTYzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDE2MGZhZTktNTJjYy00MWJkLTkyN2MtY2YwZWE3ZTE1NTFjP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:25:27 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01" ], "x-ms-request-id": [ - "2948e530-1bd0-4644-a4d2-840d1ae65f5f" + "debfe1ea-a251-4e46-bdfe-3a5f0d36f723" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -680,14 +548,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "11996" ], "x-ms-correlation-request-id": [ - "a604ed9a-81e1-4f37-9ced-94a06e77aa9d" + "f0814811-455c-4a76-96ef-f55535230003" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112528Z:a604ed9a-81e1-4f37-9ced-94a06e77aa9d" + "WESTUS2:20221017T193106Z:f0814811-455c-4a76-96ef-f55535230003" + ], + "Date": [ + "Mon, 17 Oct 2022 19:31:05 GMT" ], "Content-Length": [ "353" @@ -699,43 +573,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"name\": \"8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"name\": \"0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGY1MmE2MWMtZmYwZC00ZTAwLWFkODctZjVjZjk3MDNmMTYzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDE2MGZhZTktNTJjYy00MWJkLTkyN2MtY2YwZWE3ZTE1NTFjP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:25:58 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01" ], "x-ms-request-id": [ - "ff1536f8-e125-4628-8674-c523ed360b1b" + "c10d6193-e7db-41f7-b3f3-48a7851ad31b" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -743,14 +611,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" + "11995" ], "x-ms-correlation-request-id": [ - "5a1fcc50-c2ca-44c0-b4be-cdd59a4ff0f5" + "1311cc4c-3a2c-461b-92af-c7ab41c8451a" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112558Z:5a1fcc50-c2ca-44c0-b4be-cdd59a4ff0f5" + "WESTUS2:20221017T193136Z:1311cc4c-3a2c-461b-92af-c7ab41c8451a" + ], + "Date": [ + "Mon, 17 Oct 2022 19:31:35 GMT" ], "Content-Length": [ "353" @@ -762,43 +636,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"name\": \"8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"name\": \"0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGY1MmE2MWMtZmYwZC00ZTAwLWFkODctZjVjZjk3MDNmMTYzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDE2MGZhZTktNTJjYy00MWJkLTkyN2MtY2YwZWE3ZTE1NTFjP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:26:28 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01" ], "x-ms-request-id": [ - "8a7611f3-1cd8-436d-ace5-939ba015c287" + "d3ab2ed8-2d0a-4e66-aadc-f082d752e11c" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -806,14 +674,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" + "11994" ], "x-ms-correlation-request-id": [ - "d181c910-a431-4edf-968b-84c2082f0319" + "38a88d0b-f45a-464f-8a9f-9bd2cf241c61" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112628Z:d181c910-a431-4edf-968b-84c2082f0319" + "WESTUS2:20221017T193206Z:38a88d0b-f45a-464f-8a9f-9bd2cf241c61" + ], + "Date": [ + "Mon, 17 Oct 2022 19:32:05 GMT" ], "Content-Length": [ "353" @@ -825,43 +699,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"name\": \"8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"name\": \"0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGY1MmE2MWMtZmYwZC00ZTAwLWFkODctZjVjZjk3MDNmMTYzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDE2MGZhZTktNTJjYy00MWJkLTkyN2MtY2YwZWE3ZTE1NTFjP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:26:58 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01" ], "x-ms-request-id": [ - "0d119108-57e2-47b0-832b-b609daf115da" + "f926b9cb-f0da-4bb1-a737-ba21059741c8" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -869,14 +737,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11944" + "11993" ], "x-ms-correlation-request-id": [ - "a3e38295-01c5-4afb-b0c0-d2573d71b7c1" + "83bafbfc-9fbc-410e-bb3c-a6b6eb41c7b3" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112659Z:a3e38295-01c5-4afb-b0c0-d2573d71b7c1" + "WESTUS2:20221017T193236Z:83bafbfc-9fbc-410e-bb3c-a6b6eb41c7b3" + ], + "Date": [ + "Mon, 17 Oct 2022 19:32:35 GMT" ], "Content-Length": [ "353" @@ -888,43 +762,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"name\": \"8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"name\": \"0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGY1MmE2MWMtZmYwZC00ZTAwLWFkODctZjVjZjk3MDNmMTYzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDE2MGZhZTktNTJjYy00MWJkLTkyN2MtY2YwZWE3ZTE1NTFjP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:27:28 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01" ], "x-ms-request-id": [ - "0810a6de-53f5-4320-83a1-11faabd38197" + "f43599f7-7358-4f04-8d35-c112b1813798" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -932,14 +800,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11941" + "11992" ], "x-ms-correlation-request-id": [ - "d47bf70d-1336-47d6-9c62-d4d725b9f715" + "cb029995-4990-4cdc-93ce-afbdfa3de64e" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112729Z:d47bf70d-1336-47d6-9c62-d4d725b9f715" + "WESTUS2:20221017T193306Z:cb029995-4990-4cdc-93ce-afbdfa3de64e" + ], + "Date": [ + "Mon, 17 Oct 2022 19:33:06 GMT" ], "Content-Length": [ "353" @@ -951,43 +825,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"name\": \"8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"name\": \"0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGY1MmE2MWMtZmYwZC00ZTAwLWFkODctZjVjZjk3MDNmMTYzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDE2MGZhZTktNTJjYy00MWJkLTkyN2MtY2YwZWE3ZTE1NTFjP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:27:59 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01" ], "x-ms-request-id": [ - "6b2df187-65cf-4d80-9e89-d9efaf44fa73" + "a0e3d91a-ac0d-4735-8ea8-0240cfdad758" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -995,14 +863,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11938" + "11991" ], "x-ms-correlation-request-id": [ - "c30deb82-4841-4561-afa6-3101f57f05b7" + "ce5a400e-8dc7-4e6a-8fa9-f261d3dd2f68" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112759Z:c30deb82-4841-4561-afa6-3101f57f05b7" + "WESTUS2:20221017T193336Z:ce5a400e-8dc7-4e6a-8fa9-f261d3dd2f68" + ], + "Date": [ + "Mon, 17 Oct 2022 19:33:35 GMT" ], "Content-Length": [ "353" @@ -1014,43 +888,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"name\": \"8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"name\": \"0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGY1MmE2MWMtZmYwZC00ZTAwLWFkODctZjVjZjk3MDNmMTYzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDE2MGZhZTktNTJjYy00MWJkLTkyN2MtY2YwZWE3ZTE1NTFjP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:28:29 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01" ], "x-ms-request-id": [ - "fb9dac2b-9a18-4586-81a2-4b60e28e25a7" + "dc9f7628-b9ae-40a7-a91c-47eb51c5693b" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1058,14 +926,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11935" + "11990" ], "x-ms-correlation-request-id": [ - "77f80cc2-852b-4d55-a470-e417ce7a478b" + "52a50969-3a17-4321-a94e-2b8934bf5f02" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112830Z:77f80cc2-852b-4d55-a470-e417ce7a478b" + "WESTUS2:20221017T193406Z:52a50969-3a17-4321-a94e-2b8934bf5f02" + ], + "Date": [ + "Mon, 17 Oct 2022 19:34:06 GMT" ], "Content-Length": [ "353" @@ -1077,43 +951,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"name\": \"8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"name\": \"0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGY1MmE2MWMtZmYwZC00ZTAwLWFkODctZjVjZjk3MDNmMTYzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDE2MGZhZTktNTJjYy00MWJkLTkyN2MtY2YwZWE3ZTE1NTFjP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:29:00 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01" ], "x-ms-request-id": [ - "d4bdfdff-618a-4ba8-91c4-fd01e404065f" + "ba19e97d-a819-407f-88f4-d3ff9d53c8fc" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1122,13 +990,19 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11932" + "11989" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "d54ef190-4ece-48a2-83b7-3938fefacad5" + "b92d6bdc-b4f0-4950-9db1-dcb89e058317" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112900Z:d54ef190-4ece-48a2-83b7-3938fefacad5" + "WESTUS2:20221017T193436Z:b92d6bdc-b4f0-4950-9db1-dcb89e058317" + ], + "Date": [ + "Mon, 17 Oct 2022 19:34:35 GMT" ], "Content-Length": [ "353" @@ -1140,43 +1014,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"name\": \"8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"name\": \"0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGY1MmE2MWMtZmYwZC00ZTAwLWFkODctZjVjZjk3MDNmMTYzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDE2MGZhZTktNTJjYy00MWJkLTkyN2MtY2YwZWE3ZTE1NTFjP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:29:30 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01" ], "x-ms-request-id": [ - "8ddbf230-8c3b-4123-90a2-5b8d9bae0618" + "b620be05-c4b3-4670-8a15-7ab0a4e53b15" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1184,14 +1052,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11929" + "11988" ], "x-ms-correlation-request-id": [ - "fb189b15-ca46-4ab2-ad38-f23b6d455737" + "8ea30cdc-c059-4f7b-9659-8087242f8439" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T112930Z:fb189b15-ca46-4ab2-ad38-f23b6d455737" + "WESTUS2:20221017T193506Z:8ea30cdc-c059-4f7b-9659-8087242f8439" + ], + "Date": [ + "Mon, 17 Oct 2022 19:35:06 GMT" ], "Content-Length": [ "353" @@ -1203,43 +1077,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"name\": \"8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"name\": \"0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGY1MmE2MWMtZmYwZC00ZTAwLWFkODctZjVjZjk3MDNmMTYzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDE2MGZhZTktNTJjYy00MWJkLTkyN2MtY2YwZWE3ZTE1NTFjP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:30:01 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01" ], "x-ms-request-id": [ - "77e4d174-658e-45bc-b143-c8a033426f6b" + "9c89cacd-0814-4c14-be03-6eb41bb76f60" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1247,14 +1115,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11926" + "11987" ], "x-ms-correlation-request-id": [ - "15aabd11-6c3c-4dd0-984f-d8b165d67e72" + "8eaac59f-6528-43d2-b217-a2630c6477cb" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113001Z:15aabd11-6c3c-4dd0-984f-d8b165d67e72" + "WESTUS2:20221017T193536Z:8eaac59f-6528-43d2-b217-a2630c6477cb" + ], + "Date": [ + "Mon, 17 Oct 2022 19:35:36 GMT" ], "Content-Length": [ "353" @@ -1266,43 +1140,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"name\": \"8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"name\": \"0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGY1MmE2MWMtZmYwZC00ZTAwLWFkODctZjVjZjk3MDNmMTYzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDE2MGZhZTktNTJjYy00MWJkLTkyN2MtY2YwZWE3ZTE1NTFjP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:30:31 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01" ], "x-ms-request-id": [ - "3b823eca-3834-4890-a83d-00b8298caee6" + "10d8ddfb-bd3a-4e91-98ff-fac24852c3ac" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1310,14 +1178,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11923" + "11986" ], "x-ms-correlation-request-id": [ - "567c0e50-9224-48d5-9c95-a0d5437329e9" + "803cbcc7-8c7b-486d-927e-eb5b206d06ce" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113031Z:567c0e50-9224-48d5-9c95-a0d5437329e9" + "WESTUS2:20221017T193606Z:803cbcc7-8c7b-486d-927e-eb5b206d06ce" + ], + "Date": [ + "Mon, 17 Oct 2022 19:36:06 GMT" ], "Content-Length": [ "353" @@ -1329,43 +1203,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"name\": \"8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"name\": \"0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGY1MmE2MWMtZmYwZC00ZTAwLWFkODctZjVjZjk3MDNmMTYzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDE2MGZhZTktNTJjYy00MWJkLTkyN2MtY2YwZWE3ZTE1NTFjP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:31:01 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01" ], "x-ms-request-id": [ - "994e6bbd-31c7-463e-9a1c-9a425f848747" + "f847d987-c9c1-42fa-98cb-a20062cafae2" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1373,14 +1241,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11920" + "11985" ], "x-ms-correlation-request-id": [ - "a859aaac-a3e0-4f9b-b596-c0c8d10902eb" + "db65d795-ea97-4b8d-b7c8-f141e48a2ac1" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113101Z:a859aaac-a3e0-4f9b-b596-c0c8d10902eb" + "WESTUS2:20221017T193636Z:db65d795-ea97-4b8d-b7c8-f141e48a2ac1" + ], + "Date": [ + "Mon, 17 Oct 2022 19:36:36 GMT" ], "Content-Length": [ "353" @@ -1392,43 +1266,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"name\": \"8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"name\": \"0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGY1MmE2MWMtZmYwZC00ZTAwLWFkODctZjVjZjk3MDNmMTYzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDE2MGZhZTktNTJjYy00MWJkLTkyN2MtY2YwZWE3ZTE1NTFjP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:31:32 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01" ], "x-ms-request-id": [ - "11a81ff9-d571-4b07-be4f-bab7a67ec6fd" + "d38a7736-d28c-4edc-a527-0e7ca458e5e9" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1436,14 +1304,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11917" + "11984" ], "x-ms-correlation-request-id": [ - "efbfc5a9-1282-4fb8-9063-6037b0af6374" + "611c27af-858e-4e2b-b938-abe73e9a3e79" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113132Z:efbfc5a9-1282-4fb8-9063-6037b0af6374" + "WESTUS2:20221017T193706Z:611c27af-858e-4e2b-b938-abe73e9a3e79" + ], + "Date": [ + "Mon, 17 Oct 2022 19:37:06 GMT" ], "Content-Length": [ "353" @@ -1455,43 +1329,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"name\": \"8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"name\": \"0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGY1MmE2MWMtZmYwZC00ZTAwLWFkODctZjVjZjk3MDNmMTYzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDE2MGZhZTktNTJjYy00MWJkLTkyN2MtY2YwZWE3ZTE1NTFjP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:32:02 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01" ], "x-ms-request-id": [ - "7234368c-df4c-4abc-bf36-1f6103796f0c" + "b19aa36d-326f-4436-a08d-a4848acdd99c" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1499,14 +1367,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11914" + "11983" ], "x-ms-correlation-request-id": [ - "e9b41aeb-1ea6-430e-a865-717604564d21" + "57b67d13-e17d-4600-bd32-6996a123e1c6" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113202Z:e9b41aeb-1ea6-430e-a865-717604564d21" + "WESTUS2:20221017T193737Z:57b67d13-e17d-4600-bd32-6996a123e1c6" + ], + "Date": [ + "Mon, 17 Oct 2022 19:37:36 GMT" ], "Content-Length": [ "353" @@ -1518,43 +1392,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"name\": \"8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"name\": \"0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGY1MmE2MWMtZmYwZC00ZTAwLWFkODctZjVjZjk3MDNmMTYzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDE2MGZhZTktNTJjYy00MWJkLTkyN2MtY2YwZWE3ZTE1NTFjP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:32:32 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01" ], "x-ms-request-id": [ - "7236a37f-2ac0-47fe-a64b-1b5144922eb3" + "b0fb2b2a-24ce-438e-9f19-f6e174c0bbff" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1562,14 +1430,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11911" + "11982" ], "x-ms-correlation-request-id": [ - "b548a19c-3e00-4107-8160-672790a73744" + "a8212650-d200-4199-895f-41397c6461eb" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113232Z:b548a19c-3e00-4107-8160-672790a73744" + "WESTUS2:20221017T193807Z:a8212650-d200-4199-895f-41397c6461eb" + ], + "Date": [ + "Mon, 17 Oct 2022 19:38:06 GMT" ], "Content-Length": [ "353" @@ -1581,43 +1455,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"name\": \"8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"name\": \"0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGY1MmE2MWMtZmYwZC00ZTAwLWFkODctZjVjZjk3MDNmMTYzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDE2MGZhZTktNTJjYy00MWJkLTkyN2MtY2YwZWE3ZTE1NTFjP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:33:02 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01" ], "x-ms-request-id": [ - "7179abc1-0e5a-42a8-9d64-e586a56e7620" + "782497b3-a0e6-43a1-8cf4-df1ce84fa01f" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1625,14 +1493,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11908" + "11981" ], "x-ms-correlation-request-id": [ - "ce2d53a5-86ab-4fb7-b600-bea128b05096" + "19a73e17-d465-41d0-8e2e-2ef73ee86e09" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113303Z:ce2d53a5-86ab-4fb7-b600-bea128b05096" + "WESTUS2:20221017T193837Z:19a73e17-d465-41d0-8e2e-2ef73ee86e09" + ], + "Date": [ + "Mon, 17 Oct 2022 19:38:36 GMT" ], "Content-Length": [ "353" @@ -1644,43 +1518,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"name\": \"8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"name\": \"0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGY1MmE2MWMtZmYwZC00ZTAwLWFkODctZjVjZjk3MDNmMTYzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDE2MGZhZTktNTJjYy00MWJkLTkyN2MtY2YwZWE3ZTE1NTFjP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:33:32 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01" ], "x-ms-request-id": [ - "d3a2e7e5-427f-423b-bf4b-b18f11d8494a" + "d0ad6049-55c6-4800-8357-86de781a2a10" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1688,14 +1556,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11905" + "11980" ], "x-ms-correlation-request-id": [ - "0562221e-480a-4b16-9ae9-8bc7fdc9a0a0" + "e90fe9f4-e3dd-4987-99ea-cc29ba3fcff5" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113333Z:0562221e-480a-4b16-9ae9-8bc7fdc9a0a0" + "WESTUS2:20221017T193907Z:e90fe9f4-e3dd-4987-99ea-cc29ba3fcff5" + ], + "Date": [ + "Mon, 17 Oct 2022 19:39:06 GMT" ], "Content-Length": [ "353" @@ -1707,43 +1581,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"name\": \"8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"name\": \"0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGY1MmE2MWMtZmYwZC00ZTAwLWFkODctZjVjZjk3MDNmMTYzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDE2MGZhZTktNTJjYy00MWJkLTkyN2MtY2YwZWE3ZTE1NTFjP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:34:02 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01" ], "x-ms-request-id": [ - "f2596f80-f89e-4090-9b40-e9235929e780" + "35c3bc23-61c8-416e-ac30-c959b22d5817" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1751,14 +1619,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11902" + "11979" ], "x-ms-correlation-request-id": [ - "3b5eb200-bb6e-445d-b96e-8083f023f209" + "6ad6cf67-93d3-4b85-851d-425c107d4281" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113403Z:3b5eb200-bb6e-445d-b96e-8083f023f209" + "WESTUS2:20221017T193937Z:6ad6cf67-93d3-4b85-851d-425c107d4281" + ], + "Date": [ + "Mon, 17 Oct 2022 19:39:36 GMT" ], "Content-Length": [ "353" @@ -1770,43 +1644,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"name\": \"8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"name\": \"0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGY1MmE2MWMtZmYwZC00ZTAwLWFkODctZjVjZjk3MDNmMTYzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDE2MGZhZTktNTJjYy00MWJkLTkyN2MtY2YwZWE3ZTE1NTFjP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:34:33 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01" ], "x-ms-request-id": [ - "704f9eb2-4927-40e3-a7e9-b6518510f0d7" + "cce72be1-3f1e-4506-81be-20851987c5c9" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1814,14 +1682,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11895" + "11978" ], "x-ms-correlation-request-id": [ - "db43e668-28ca-4ee1-88bf-81f751443a75" + "2351a615-6e90-49a7-8a7d-3b40ed8a1969" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113434Z:db43e668-28ca-4ee1-88bf-81f751443a75" + "WESTUS2:20221017T194007Z:2351a615-6e90-49a7-8a7d-3b40ed8a1969" + ], + "Date": [ + "Mon, 17 Oct 2022 19:40:06 GMT" ], "Content-Length": [ "353" @@ -1833,43 +1707,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"name\": \"8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"name\": \"0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGY1MmE2MWMtZmYwZC00ZTAwLWFkODctZjVjZjk3MDNmMTYzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDE2MGZhZTktNTJjYy00MWJkLTkyN2MtY2YwZWE3ZTE1NTFjP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:35:04 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01" ], "x-ms-request-id": [ - "79deea83-7941-4aa4-9ce8-b0cf85a7f141" + "5d86ff2b-13b1-4758-863b-e615ef469076" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1878,13 +1746,19 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11894" + "11977" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "3b1ae0c8-461f-481d-9dff-8a4ed3c558ed" + "f3686d79-4597-43ac-bb54-94c88a005493" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113504Z:3b1ae0c8-461f-481d-9dff-8a4ed3c558ed" + "WESTUS2:20221017T194037Z:f3686d79-4597-43ac-bb54-94c88a005493" + ], + "Date": [ + "Mon, 17 Oct 2022 19:40:37 GMT" ], "Content-Length": [ "353" @@ -1896,43 +1770,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"name\": \"8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"name\": \"0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGY1MmE2MWMtZmYwZC00ZTAwLWFkODctZjVjZjk3MDNmMTYzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDE2MGZhZTktNTJjYy00MWJkLTkyN2MtY2YwZWE3ZTE1NTFjP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:35:34 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01" ], "x-ms-request-id": [ - "7e8cc8a5-3de7-4c40-8b78-00c54619d39b" + "6d45a266-7eb5-4514-8261-8e9b323ace17" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1940,14 +1808,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11892" + "11976" ], "x-ms-correlation-request-id": [ - "f9592943-791b-4bde-bd89-84eacb1e21a7" + "27ff438d-c5e3-4846-a8db-397b44569cb4" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113534Z:f9592943-791b-4bde-bd89-84eacb1e21a7" + "WESTUS2:20221017T194107Z:27ff438d-c5e3-4846-a8db-397b44569cb4" + ], + "Date": [ + "Mon, 17 Oct 2022 19:41:06 GMT" ], "Content-Length": [ "353" @@ -1959,43 +1833,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"name\": \"8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"name\": \"0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGY1MmE2MWMtZmYwZC00ZTAwLWFkODctZjVjZjk3MDNmMTYzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDE2MGZhZTktNTJjYy00MWJkLTkyN2MtY2YwZWE3ZTE1NTFjP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:36:05 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01" ], "x-ms-request-id": [ - "e12a8f50-cbfc-4b4f-9947-d16592ff8129" + "389d9e56-44a0-4b33-8025-159ae4ef8902" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2003,14 +1871,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11890" + "11975" ], "x-ms-correlation-request-id": [ - "ec10bcfa-c469-44b3-86a5-582f8ef029c8" + "c6ae71ee-841d-4961-8a24-65b834f0b32d" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113605Z:ec10bcfa-c469-44b3-86a5-582f8ef029c8" + "WESTUS2:20221017T194137Z:c6ae71ee-841d-4961-8a24-65b834f0b32d" + ], + "Date": [ + "Mon, 17 Oct 2022 19:41:37 GMT" ], "Content-Length": [ "353" @@ -2022,43 +1896,37 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"name\": \"8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"name\": \"0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West%20US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvOGY1MmE2MWMtZmYwZC00ZTAwLWFkODctZjVjZjk3MDNmMTYzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West%20US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL1dlc3QlMjBVUy9hc3luY09wZXJhdGlvbnMvMDE2MGZhZTktNTJjYy00MWJkLTkyN2MtY2YwZWE3ZTE1NTFjP2FwaS12ZXJzaW9uPTIwMjItMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:36:35 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163?api-version=2021-06-01" + "https://management.azure.com/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c?api-version=2022-06-01" ], "x-ms-request-id": [ - "3171a15b-9f82-4324-b7de-41901bff3d0f" + "7d69c423-3db4-41bb-8673-390704fc67b4" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2066,14 +1934,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11888" + "11974" ], "x-ms-correlation-request-id": [ - "bb8f48bf-5a7a-4d97-b9ee-251439de7205" + "9f3379c4-9a25-4cf7-8981-d0f921f9f621" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113635Z:bb8f48bf-5a7a-4d97-b9ee-251439de7205" + "WESTUS2:20221017T194207Z:9f3379c4-9a25-4cf7-8981-d0f921f9f621" + ], + "Date": [ + "Mon, 17 Oct 2022 19:42:07 GMT" ], "Content-Length": [ "352" @@ -2085,40 +1959,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/providers/Microsoft.Cache/locations/West US/asyncOperations/8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"name\": \"8f52a61c-ff0d-4e00-ad87-f5cf9703f163\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/providers/Microsoft.Cache/locations/West US/asyncOperations/0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"name\": \"0160fae9-52cc-41bd-927c-cf0ea7e1551c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"percentComplete\": null,\r\n \"properties\": null,\r\n \"error\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGetList5682/providers/Microsoft.Cache/redis/RedisGetList3705?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU2ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3QzNzA1P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGetList8057/providers/Microsoft.Cache/redis/RedisGetList961?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDgwNTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3Q5NjE/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:36:36 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "7d964fd4-78da-43b7-a2b3-947ea820505d" + "773b59ed-0a6e-40f9-9bd1-bd18b6bcc578" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2126,17 +1994,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11887" + "11973" ], "x-ms-correlation-request-id": [ - "a9992a39-aed6-40f0-aa78-e79b6b7880b6" + "a0be0bac-73cc-4211-98f1-2fb242bc1462" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113636Z:a9992a39-aed6-40f0-aa78-e79b6b7880b6" + "WESTUS2:20221017T194207Z:a0be0bac-73cc-4211-98f1-2fb242bc1462" + ], + "Date": [ + "Mon, 17 Oct 2022 19:42:07 GMT" ], "Content-Length": [ - "717" + "713" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2145,46 +2019,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGetList5682/providers/Microsoft.Cache/Redis/RedisGetList3705\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGetList3705\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3705.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGetList8057/providers/Microsoft.Cache/Redis/RedisGetList961\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGetList961\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"30\",\r\n \"maxfragmentationmemory-reserved\": \"30\",\r\n \"maxmemory-delta\": \"30\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList961.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGetList5682/providers/Microsoft.Cache/redis/RedisGetList3705?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU2ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3QzNzA1P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGetList8057/providers/Microsoft.Cache/redis/RedisGetList961?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDgwNTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3Q5NjE/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a230b461-1fe3-4dd1-ae02-832280cf5089" + "165095d9-8b74-4443-9e10-d8ac97d8ace9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:36:36 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "08df5f2b-c4f3-4f96-9ed8-ff1ed518eed8" + "540e8d36-6122-408b-9f8a-eb3a5904e52e" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2192,17 +2060,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11886" + "11972" ], "x-ms-correlation-request-id": [ - "d68f9f66-69ec-439a-8b1d-952090137dee" + "74d7bb0d-33ad-42b2-b4c0-ca775461e587" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113636Z:d68f9f66-69ec-439a-8b1d-952090137dee" + "WESTUS2:20221017T194207Z:74d7bb0d-33ad-42b2-b4c0-ca775461e587" + ], + "Date": [ + "Mon, 17 Oct 2022 19:42:07 GMT" ], "Content-Length": [ - "717" + "713" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2211,46 +2085,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGetList5682/providers/Microsoft.Cache/Redis/RedisGetList3705\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGetList3705\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3705.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGetList8057/providers/Microsoft.Cache/Redis/RedisGetList961\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGetList961\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"30\",\r\n \"maxfragmentationmemory-reserved\": \"30\",\r\n \"maxmemory-delta\": \"30\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList961.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGetList5682/providers/Microsoft.Cache/redis/RedisGetList3705?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGVlMmExNDUtNGQ0MC00NGY0LWI3NjQtNjdiNDAyNzRmMWFjL3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU2ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3QzNzA1P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGetList8057/providers/Microsoft.Cache/redis/RedisGetList961?api-version=2022-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzkxOTY1OGItNjhhZS00NTA5LThjMTctNmEyMjM4MzQwYWU3L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDgwNTcvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3Q5NjE/YXBpLXZlcnNpb249MjAyMi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c0d608dd-9275-4271-a7f1-5dd4635b3c75" + "9060715a-f5c5-4758-b6d8-cb77e776e6e9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.700.22.47601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Redis.RedisManagementClient/7.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Redis.RedisManagementClient/9.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 26 Nov 2021 11:37:07 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "1d577ae9-cd7a-4adb-988a-8ba67db8ab9c" + "cd6e52ad-1ac2-44a6-b3e7-ffc8ce528fc7" ], "x-rp-server-mvid": [ - "813ce424-a354-4dd1-8e97-500396621e81" + "833439e0-b740-4cd3-bb1d-5515649d1e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2258,17 +2126,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11883" + "11971" ], "x-ms-correlation-request-id": [ - "e62da88c-a5d6-4a1a-81b1-7230c3fae9b7" + "d723d6d3-d755-48b0-9285-ce0e59ea20e3" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20211126T113707Z:e62da88c-a5d6-4a1a-81b1-7230c3fae9b7" + "WESTUS2:20221017T194238Z:d723d6d3-d755-48b0-9285-ce0e59ea20e3" + ], + "Date": [ + "Mon, 17 Oct 2022 19:42:37 GMT" ], "Content-Length": [ - "717" + "713" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2277,17 +2151,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0ee2a145-4d40-44f4-b764-67b40274f1ac/resourceGroups/RedisGetList5682/providers/Microsoft.Cache/Redis/RedisGetList3705\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGetList3705\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.0.14\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3705.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3919658b-68ae-4509-8c17-6a2238340ae7/resourceGroups/RedisGetList8057/providers/Microsoft.Cache/Redis/RedisGetList961\",\r\n \"location\": \"West US\",\r\n \"name\": \"RedisGetList961\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"6.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"30\",\r\n \"maxfragmentationmemory-reserved\": \"30\",\r\n \"maxmemory-delta\": \"30\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList961.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "StatusCode": 200 } ], "Names": { ".ctor": [ - "RedisGetList5682", - "RedisGetList3705" + "RedisGetList8057", + "RedisGetList961" ] }, "Variables": { - "SubscriptionId": "0ee2a145-4d40-44f4-b764-67b40274f1ac" + "SubscriptionId": "3919658b-68ae-4509-8c17-6a2238340ae7" } } \ No newline at end of file